-
Notifications
You must be signed in to change notification settings - Fork 92
/
package.json
39 lines (39 loc) · 1.14 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": "musicbrainz-userscripts",
"version": "1.0.0",
"description": "Collection of userscripts for MusicBrainz",
"main": "index.js",
"directories": {
"lib": "lib"
},
"scripts": {
"prettier:format": "prettier --write \"{,**/}*.{js,json,md,yml}\"",
"lint": "npm run eslint",
"lint-fix": "npm run eslint -- --fix",
"eslint": "eslint ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/murdos/musicbrainz-userscripts.git"
},
"keywords": [
"musicbrainz",
"userscripts",
"import",
"ui",
"improvements"
],
"author": "Aurélien Mino <[email protected]>",
"license": "SEE LICENSE IN individual userscripts",
"bugs": {
"url": "https://github.com/murdos/musicbrainz-userscripts/issues"
},
"homepage": "https://github.com/murdos/musicbrainz-userscripts#readme",
"devDependencies": {
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-prettier": "^3.3.1",
"prettier": "^2.2.1"
}
}