-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
35 lines (35 loc) · 873 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
{
"name": "abcnode",
"id": "abcnode",
"version": "0.0.2",
"description": "ABC notation parser for JavaScript",
"keywords": [ "abc", "music", "notation", "parser", "json" ],
"author": "Sergi Mansilla <[email protected]> (http://sergimansilla.com)",
"homepage": "https://github.com/sergi/abcnode",
"repository": {
"type": "git",
"url": "https://github.com/sergi/abcnode.git"
},
"bugs": {
"url": "https://github.com/sergi/abcnode/issues"
},
"dependencies": {
"pegjs": "0.7.0"
},
"devDependencies": {
"jake": "0.3.*",
"uglify-js": ">=1.2",
"coffee-script": ">=1.0.0"
},
"main": "./index.js",
"engines": {
"node": ">=0.4"
},
"scripts": {
"test": "node test/test_parser.js"
},
"licenses": [{
"type" : "MIT",
"url" : "https://github.com/sergi/ABCParser/blob/master/LICENSE"
}]
}