-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
49 lines (49 loc) · 1.19 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": "bemuse-notechart",
"version": "1.1.1",
"description": "Bemuse notechart data structure, supports BMS and bmsons.",
"main": "index.js",
"scripts": {
"prepublish": "env NODE_ENV=production babel src -d .",
"test": "nyc -r text -r lcov -- mocha -r ./node-environment --reporter spec"
},
"author": "Thai Pangsakulyanont <[email protected]> (http://dt.in.th/)",
"license": "MIT",
"devDependencies": {
"babel-cli": "^6.5.1",
"babel-core": "^6.5.2",
"babel-plugin-__coverage__": "^0.111.0",
"babel-plugin-espower": "^2.1.2",
"babel-polyfill": "^6.5.0",
"babel-preset-es2015": "^6.5.0",
"babel-preset-stage-2": "^6.5.0",
"babel-register": "^6.5.2",
"bluebird": "^3.4.6",
"chai": "^3.5.0",
"eslint": "^2.2.0",
"eslint-config-bemuse": "^2.1.0",
"eslint-plugin-standard": "^1.3.2",
"isparta": "^4.0.0",
"istanbul": "^0.4.2",
"mocha": "^2.4.5",
"nyc": "^5.6.0"
},
"dependencies": {
"bms": "^2.0.0",
"bmson": "^3.0.0",
"lodash": "^4.5.1"
},
"peerDependencies": {
"bluebird": "^3.4.6"
},
"nyc": {
"include": [
"/"
]
},
"files": [
"data",
"index.js",
"loader"
]
}