forked from grimmdude/MidiWriterJS
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
70 lines (70 loc) · 2.02 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
60
61
62
63
64
65
66
67
68
69
70
{
"name": "midi-writer-js",
"version": "2.1.4",
"description": "A library providing an API for generating MIDI files.",
"main": "build/index.js",
"types": "types.d.ts",
"dependencies": {
"tonal-midi": "^0.69.7"
},
"devDependencies": {
"@babel/core": "^7.9.6",
"@babel/plugin-transform-destructuring": "^7.9.5",
"@babel/preset-env": "^7.9.6",
"@rollup/plugin-babel": "^5.0.0",
"@rollup/plugin-node-resolve": "^15.0.1",
"@rollup/plugin-replace": "^2.4.2",
"@rollup/plugin-typescript": "^11.0.0",
"@types/node": "^18.15.3",
"@typescript-eslint/eslint-plugin": "^5.55.0",
"@typescript-eslint/parser": "^5.55.0",
"eslint": "^7.32.0",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-node": "^9.2.0",
"eslint-plugin-promise": "^4.1.1",
"eslint-plugin-standard": "^4.0.1",
"jsdoc": "^3.6.4",
"minami": "^1.2.3",
"mocha": "^9.0.1",
"nyc": "^15.0.1",
"rollup": "^2.9.0",
"tslib": "^2.5.0",
"typescript": "^5.0.2",
"watch": "^1.0.2"
},
"directories": {
"lib": "src",
"example": "examples",
"test": "test"
},
"scripts": {
"build": "mkdir -p build && rollup -c",
"docs": "./node_modules/.bin/jsdoc -r src README.md -d ./docs -t ./node_modules/minami",
"lint:js": "eslint 'src/**/**.ts'",
"prepublishOnly": "npm test",
"pretest": "npm run build",
"test": "nyc --reporter=text mocha --no-config --no-package",
"watch": "watch 'npm run build' src",
"postinstall": "node postinstall.js"
},
"runkitExampleFilename": "runkit.js",
"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",
"publishConfig": {
"@grimmdude:registry": "https://npm.pkg.github.com"
}
}