-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 1.09 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
{
"name": "package-hunter",
"version": "1.3.1",
"license": "MIT",
"scripts": {
"lint": "yarn run eslint && yarn run format",
"format": "prettier --config .prettierrc.js --write '**/*.js'",
"eslint": "eslint --fix '**/*.js'",
"prebuild": "rm -rf dist",
"postbuild": "zip -rjq package-hunter.zip dist",
"start": "parcel watch src/manifest.json --host localhost",
"build": "parcel build src/manifest.json --no-content-hash",
"release": "yarn run build && bash ./bin/release.sh"
},
"devDependencies": {
"@parcel/config-webextension": "^2.8.2",
"@parcel/optimizer-data-url": "2.8.2",
"@parcel/transformer-inline-string": "2.8.2",
"eslint": "^5.9.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-config-prettier": "^3.3.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-prettier": "^3.0.0",
"husky": "^1.2.0",
"lint-staged": "^8.1.0",
"parcel": "^2.8.2",
"prettier": "^1.15.3"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"eslint --fix"
]
}
}