forked from privatenumber/minification-benchmarks
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) Β· 1.29 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
{
"name": "minification-benchmarks",
"description": "JS minification benchmarks",
"repository": "privatenumber/minification-benchmarks",
"author": "Hiroki Osame <[email protected]>",
"license": "MIT",
"private": true,
"files": [],
"type": "module",
"scripts": {
"lint": "eslint lib",
"build": "node --experimental-import-meta-resolve lib"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": "eslint"
},
"dependencies": {
"@swc/core": "^1.2.46",
"babel-minify": "^0.5.1",
"byte-size": "^7.0.0",
"comment-mark": "^1.0.0",
"d3": "^6.3.1",
"esbuild": "^0.8.34",
"execa": "^5.0.0",
"google-closure-compiler": "^20210106.0.0",
"jquery": "^3.5.1",
"listr": "^0.14.3",
"lodash": "^4.17.20",
"lodash-es": "^4.17.20",
"markdown-table": "^2.0.0",
"moment": "^2.29.1",
"outdent": "^0.8.0",
"react": "^17.0.1",
"terser": "^5.5.1",
"three": "^0.124.0",
"uglify-js": "^3.12.5",
"vue": "^2.6.12"
},
"devDependencies": {
"@babel/eslint-parser": "^7.12.1",
"@babel/plugin-syntax-top-level-await": "^7.12.1",
"@pvtnbr/eslint-config-base": "^0.1.8",
"eslint": "^7.18.0",
"husky": "^4.3.8",
"lint-staged": "^10.5.3"
},
"eslintConfig": {
"extends": "@pvtnbr/eslint-config-base",
"parser": "@babel/eslint-parser"
}
}