-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
40 lines (40 loc) · 979 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
38
39
40
{
"name": "@kellnerd/musicbrainz-scripts",
"version": "0.8.0",
"author": "David Kellner",
"description": "Bookmarklets and Userscripts for MusicBrainz.org",
"keywords": [
"musicbrainz",
"userscripts",
"bookmarklets"
],
"homepage": "https://github.com/kellnerd/musicbrainz-scripts#readme",
"repository": {
"type": "git",
"url": "https://github.com/kellnerd/musicbrainz-scripts.git"
},
"license": "MIT",
"type": "module",
"scripts": {
"build": "node build.js",
"debug-build": "node build.js -d",
"test": "node test"
},
"files": [
"src/*.js",
"src/data/",
"src/discogs/",
"src/relationship-editor/",
"src/types/",
"index.js",
"jsconfig.json"
],
"main": "index.js",
"devDependencies": {
"@kellnerd/userscript-bundler": "github:kellnerd/userscript-bundler#v0.8.1",
"weight-balanced-tree": "^0.6.1"
},
"dependencies": {
"@kellnerd/es-utils": "github:kellnerd/es-utils"
}
}