-
Notifications
You must be signed in to change notification settings - Fork 91
/
package.json
74 lines (74 loc) · 1.69 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"name": "magepack",
"version": "2.11.2",
"bin": "./cli.js",
"repository": "https://github.com/magesuite/magepack.git",
"author": "creativestyle",
"license": "OSL-2.0",
"main": "index.js",
"scripts": {
"test": "jest"
},
"engines": {
"node": ">=10"
},
"dependencies": {
"commander": "^5.0.0",
"consola": "^2.11.3",
"generate-sourcemap": "^0.0.2",
"glob": "^7.1.6",
"gzip-size": "^5.1.1",
"javascript-stringify": "^2.0.1",
"jsesc": "^3.0.1",
"lodash.merge": "^4.6.2",
"terser": "^5.15.0"
},
"lint-staged": {
"*.json": [
"prettier --write"
],
"*.js": [
"prettier --write",
"eslint --fix"
]
},
"prettier": {
"singleQuote": true,
"trailingComma": "es5",
"bracketSpacing": true,
"tabWidth": 4
},
"eslintConfig": {
"env": {
"node": true,
"es6": true,
"browser": true,
"jest": true
},
"extends": [
"eslint:recommended",
"prettier",
"plugin:prettier/recommended"
],
"parserOptions": {
"ecmaVersion": 8
}
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"devDependencies": {
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.10.1",
"eslint-plugin-prettier": "^3.1.2",
"husky": "^4.2.3",
"jest": "^26.1.0",
"lint-staged": "^10.1.0",
"prettier": "^2.0.2"
},
"optionalDependencies": {
"puppeteer": "^2.1.1"
}
}