forked from grimmdude/MidiWriterJS
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.51 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
{
"name": "midi-writer-js",
"version": "1.7.1",
"description": "A library providing an API for generating MIDI files.",
"main": "build/index.js",
"dependencies": {
"tonal-midi": "^0.69.7"
},
"devDependencies": {
"@babel/core": "^7.2.2",
"@babel/plugin-transform-destructuring": "^7.2.0",
"@babel/preset-env": "^7.2.3",
"eslint": "^5.16.0",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.17.3",
"eslint-plugin-node": "^9.1.0",
"eslint-plugin-promise": "^4.1.1",
"eslint-plugin-standard": "^4.0.0",
"jsdoc": "^3.5.5",
"minami": "^1.1.1",
"mocha": "^5.2.0",
"rollup": "^1.0.1",
"rollup-plugin-babel": "^4.2.0",
"uglify-js": "^2.7.3",
"watch": "^1.0.2"
},
"directories": {
"lib": "src",
"example": "examples",
"test": "test"
},
"scripts": {
"build": "mkdir -p build && rollup -c && npm run docs",
"docs": "./node_modules/.bin/jsdoc -r src README.md -d ./docs -t ./node_modules/minami",
"lint:js": "eslint 'src/**/**.js'",
"prepublishOnly": "npm test",
"pretest": "npm run build",
"test": "mocha",
"watch": "watch 'npm run build' src"
},
"repository": {
"type": "git",
"url": "git+https://github.com/grimmdude/MidiWriterJS.git"
},
"keywords": [
"midi",
"generator",
"music"
],
"author": "Garrett Grimm",
"license": "MIT",
"bugs": {
"url": "https://github.com/grimmdude/MidiWriterJS/issues"
},
"homepage": "https://github.com/grimmdude/MidiWriterJS#readme"
}