forked from paulrosen/abcjs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.37 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
{
"name": "abcjs",
"version": "5.1.1",
"description": "Renderer for abc music notation",
"main": "index.js",
"directories": {
"test": "test"
},
"scripts": {
"build": "npm run fix-versions && npm run build:basic && npm run build:midi && npm run build:plugin && npm run build:grease",
"build:basic": "webpack --env.type=basic",
"build:midi": "webpack --env.type=midi",
"build:plugin": "webpack --env.type=plugin",
"build:grease": "cat src/plugin/greasemonkey.js bin/abcjs_plugin_5.1.1-min.js > bin/abcjs_plugin_5.1.0.user.js",
"fix-versions": "./fix-versions.sh 5.1.1",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/paulrosen/abcjs.git"
},
"keywords": [
"abc",
"music",
"notation",
"midi"
],
"author": "Paul Rosen <[email protected]> (https://abcjs.net)",
"contributors": [
"Gregory Dyke",
"Thomas Chandelle"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/paulrosen/abcjs/issues"
},
"homepage": "https://abcjs.net",
"devDependencies": {
"babel-core": "^6.26.0",
"babel-loader": "^7.1.4",
"babel-preset-env": "^1.6.1",
"eslint": "^4.19.1",
"uglifyjs-webpack-plugin": "^1.2.4",
"webpack": "^3.11.0"
},
"dependencies": {
"midi": "https://github.com/paulrosen/MIDI.js.git#abcjs"
}
}