-
Notifications
You must be signed in to change notification settings - Fork 140
/
Copy pathpackage.json
58 lines (58 loc) · 1.26 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
{
"name": "image-conversion",
"version": "2.1.1",
"description": "A simple and easy-to-use JS image convert tools, which can specify size to compress the image.",
"main": "index.js",
"author": "wangyulue",
"files": [
"build",
"src",
"index.d.ts",
"index.js",
"tsconfig.json",
"webpack.config.js"
],
"keywords": [
"image",
"images",
"resize",
"conversion",
"convert",
"compress",
"minify",
"jpeg",
"jpg",
"png",
"gif"
],
"license": "MIT",
"scripts": {
"build": "webpack --config webpack.config.js",
"build:test": "webpack --config test/webpack.config.js",
"test": "yarn build:test && http-server . -o /test/unit/"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"src/**/*.ts": "eslint"
},
"devDependencies": {
"@types/chai": "^4.2.11",
"@types/mocha": "^7.0.2",
"@typescript-eslint/eslint-plugin": "^2.23.0",
"@typescript-eslint/parser": "^2.23.0",
"chai": "^4.2.0",
"eslint": "^6.8.0",
"http-server": "^0.12.1",
"husky": "^4.2.3",
"lint-staged": "^10.0.8",
"mocha": "^7.1.1",
"ts-loader": "^6.2.1",
"typescript": "^3.8.3",
"webpack": "^4.42.0",
"webpack-cli": "^3.3.11"
}
}