forked from loujine/musicbrainz-scripts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.24 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
{
"name": "musicbrainz-scripts",
"version": "1.0.0",
"description": "Collection of userscripts for MusicBrainz",
"main": "index.js",
"scripts": {
"prettier:format": "prettier mb*user.js",
"lint": "npm run eslint",
"eslint": "eslint *user.js *common.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/loujine/musicbrainz-scripts.git"
},
"keywords": [
"musicbrainz",
"userscripts"
],
"author": "loujine <[email protected]>",
"license": "SEE LICENSE IN individual userscripts",
"bugs": {
"url": "https://github.com/loujine/musicbrainz-scripts/issues"
},
"homepage": "https://github.com/loujine/musicbrainz-scripts#readme",
"devDependencies": {
"eslint": "^7.9.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-prettier": "^3.1.4",
"prettier": "^2.1.1"
},
"prettier": {
"printWidth": 80,
"singleQuote": true,
"tabWidth": 4,
"useTabs": false,
"semi": true,
"quoteProps": "preserve",
"trailingComma": "es5",
"bracketSpacing": false,
"arrowParens": "avoid"
}
}