forked from listen1/listen1_chrome_extension
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 991 Bytes
/
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
{
"name": "listen1_chrome_extension",
"version": "2.32.1",
"description": "One for all free music in China. ",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "https://github.com/listen1/listen1_chrome_extension.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/listen1/listen1_chrome_extension/issues"
},
"homepage": "https://github.com/listen1/listen1_chrome_extension#readme",
"devDependencies": {
"eslint": "^7.30.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.23.4",
"husky": "^4.3.8",
"lint-staged": "^10.5.4",
"prettier": "^2.3.2"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"!(**/vendor/*.js)*.js": "eslint --cache --fix",
"!(**/vendor/*.js)*.{js,css,md}": "prettier --write"
}
}