-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
47 lines (47 loc) · 1.12 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
{
"name": "m8-js",
"version": "0.2.1",
"description": "Library for loading and interacting with Dirtywave M8 instrument/song files.",
"author": "Jeremy Whitlock <[email protected]>",
"license": "Apache-2.0",
"main": "index.js",
"keywords": [
"dirtywave",
"m8"
],
"scripts": {
"docs": "jsdoc2md index.js lib/*.js lib/types/*.js > docs/API.md",
"test": "eslint bin/m8 index.js lib/*.js lib/cli/*.js lib/types/*.js lib/types/instruments/*.js lib/types/internal/*.js test/*.js && jest"
},
"bin": {
"m8": "./bin/m8"
},
"devDependencies": {
"eslint": "^8.15.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jest": "^27.0.1",
"eslint-plugin-n": "^15.2.0",
"eslint-plugin-promise": "^6.0.0",
"jest": "^29.0.2",
"jsdoc-to-markdown": "^7.1.1"
},
"dependencies": {
"cli-color": "^2.0.2",
"commander": "^9.3.0",
"x256": "^0.0.2"
},
"files": [
"bin",
"docs",
"index.js",
"lib"
],
"jest": {
"collectCoverage": true,
"coverageReporters": [
"text",
"text-summary"
]
}
}