-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
58 lines (58 loc) · 1.35 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
{
"name": "spotify-automation",
"version": "1.0.0",
"repository": "[email protected]:camjackson/spotify-automation",
"author": "Cam Jackson",
"license": "MIT",
"scripts": {
"getTrackData": "node src/index.js getTrackData",
"createPlaylist": "node src/index.js createPlaylist",
"setup": "./setup.sh",
"format": "prettier --write \"src/**/*.js\"",
"lint": "eslint src",
"test": "jest --watch --watchPathIgnorePatterns 'data/'"
},
"dependencies": {
"express": "^4.16.3",
"opn": "^5.3.0",
"request": "^2.85.0",
"request-promise": "^4.2.2"
},
"devDependencies": {
"eslint": "^4.19.1",
"eslint-config-airbnb-base": "^13.0.0",
"eslint-config-prettier": "^3.1.0",
"eslint-plugin-import": "^2.12.0",
"husky": "^1.1.1",
"jest": "^23.6.0",
"nock": "^10.0.1",
"prettier": "^1.14.3",
"pretty-quick": "^1.7.0"
},
"eslintConfig": {
"extends": [
"airbnb-base",
"prettier"
],
"env": {
"jest": true
},
"rules": {
"max-len": "off",
"arrow-parens": "off",
"prefer-destructuring": "off",
"operator-linebreak": "off",
"no-plusplus": "off",
"object-curly-newline": "off"
}
},
"prettier": {
"singleQuote": true,
"trailingComma": "all"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
}
}