-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 902 Bytes
/
package.json
File metadata and controls
39 lines (39 loc) · 902 Bytes
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": "musicxml-iterator",
"version": "0.0.0",
"description": "An iterator for musicxml",
"main": "./lib/Iterator.js",
"files": [
"lib"
],
"scripts": {
"lint": "./node_modules/.bin/eslint --cache ./lib/*.js tests/*.js",
"test": "npm run lint && nyc tape tests/*.js | tap-nyc"
},
"repository": {
"type": "git",
"url": "https://github.com/MegaArman/musicxml-iterator"
},
"keywords": [
"music informatics",
"musicxml",
"iterator",
"music scores",
"music"
],
"author": "Arman Bahraini",
"license": "MIT",
"bugs": {
"url": "https://github.com/MegaArman/musicxml-iterator/issues"
},
"homepage": "https://github.com/MegaArman/musicxml-iterator#readme",
"devDependencies": {
"eslint": "^4.8.0",
"nyc": "^11.2.1",
"tap-nyc": "^1.0.3",
"tape": "^4.8.0"
},
"dependencies": {
"elementtree": "^0.1.7"
}
}