-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.3 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.3 KB
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": "regroovejs",
"version": "0.2.7",
"description": "Library providing various module for Regroove app.",
"homepage": "https://github.com/rekoillabs/regroovejs",
"bugs": {
"url": "https://github.com/rekoillabs/regroovejs/issues"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"test": "mocha -r ts-node/register",
"coverage": "./node_modules/nyc/bin/nyc.js mocha -r ts-node/register",
"lint": "./node_modules/.bin/eslint src --fix",
"build": "rm -rf dist && tsc",
"watch": "tsc --watch"
},
"author": "Max Kraan",
"license": "MIT",
"private": false,
"engines": {
"node": ">=12"
},
"engineStrict": true,
"prepublish": "tsc",
"devDependencies": {
"@types/mocha": "^8.0.3",
"@types/node": "^14.11.5",
"@typescript-eslint/eslint-plugin": "^4.6.1",
"@typescript-eslint/parser": "^4.6.1",
"eslint": "^7.13.0",
"eslint-config-standard-with-typescript": "^20.0.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.3.1",
"mocha": "^8.1.3",
"nyc": "^15.1.0",
"prettier": "2.2.1",
"ts-loader": "^8.0.4",
"ts-node": "^9.0.0",
"typescript": "<=4.5"
},
"dependencies": {
"jzz-midi-smf": "^1.4.0",
"onnxruntime-node": "^1.7.0"
}
}