forked from nfroidure/midifile
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.46 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
50
51
52
53
54
55
56
57
58
59
{
"name": "midifile",
"version": "1.0.4",
"description": "Read/write standard MIDI files.",
"main": "./src/MIDIFile",
"author": "Nicolas Froidure",
"repository": {
"type": "git",
"url": "http://github.com/nfroidure/MIDIFile.git"
},
"license": "MIT",
"engines": {
"node": "*"
},
"dependencies": {
"midievents": "^1.0.1",
"utf-8": "^1.0.0"
},
"devDependencies": {
"browserify": "^12.0.2",
"coveralls": "^2.11.6",
"eslint": "^1.10.3",
"eslint-config-simplifield": "^1.2.0",
"istanbul": "^0.4.1",
"mocha": "^2.3.4",
"mocha-lcov-reporter": "^1.0.0"
},
"scripts": {
"test": "mocha tests/*.mocha.js",
"coveralls": "istanbul cover _mocha --report lcovonly -- tests/*.mocha.js -R spec -t 5000 && cat ./coverage/lcov.info | coveralls && rm -rf ./coverage",
"cover": "istanbul cover _mocha --report html -- tests/*.mocha.js -R spec -t 5000",
"lint": "eslint src/*.js tests/*.js",
"preversion": "npm test && npm run lint",
"build": "browserify -s MIDIFile src/MIDIFile.js > dist/MIDIFile.js"
},
"keywords": [
"sound",
"music",
"midi",
"file",
"format",
"read",
"write"
],
"testling": {
"harness": "mocha",
"files": "tests/*.mocha.js",
"browsers": [
"ie/6..latest",
"chrome/22..latest",
"firefox/16..latest",
"safari/latest",
"opera/11.0..latest",
"iphone/6",
"ipad/6",
"android-browser/latest"
]
}
}