forked from contentful/extensions
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
56 lines (56 loc) · 1.53 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
{
"private": true,
"license": "UNLICENSED",
"devDependencies": {
"babel-eslint": "10.0.1",
"commander": "^2.20.0",
"cpy": "^7.2.0",
"eslint": "^5.16.0",
"eslint-config-prettier": "^4.1.0",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-jest": "^22.4.1",
"eslint-plugin-node": "^8.0.1",
"eslint-plugin-promise": "^4.1.1",
"eslint-plugin-react": "^7.12.4",
"husky": "^1.3.1",
"lerna": "^3.14.1",
"lint-staged": "^8.1.5",
"log-symbols": "^2.2.0",
"make-dir": "^2.1.0",
"netlify": "^2.4.6",
"ora": "^3.4.0",
"prettier": "^1.16.4",
"rimraf": "^2.6.3"
},
"scripts": {
"clean": "rimraf ./dist",
"bootstrap": "lerna bootstrap",
"prettier": "prettier marketplace/**/*.js scripts/**/*.js --write --ignore-path .gitignore",
"prettier-check": "prettier marketplace/**/*.js scripts/**/*.js --check --ignore-path .gitignore",
"build": "lerna run build -- -- --no-inline && node ./scripts/build.js",
"deploy": "node ./scripts/deploy.js",
"lint": "eslint marketplace/**/*.js scripts/**/*.js --ignore-path .gitignore",
"test": "lerna run test",
"coverage": "lerna run coverage"
},
"engines": {
"node": ">=10.15.0"
},
"lint-staged": {
"marketplace/**/*.js": [
"prettier --write --ignore-path .gitignore",
"eslint --fix --ignore-path .gitignore",
"git add"
],
"*.md": [
"prettier --write",
"git add"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"name": "extensions"
}