This repository has been archived by the owner on Oct 31, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.59 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
{
"name": "midi-convert-wrapper-advanced",
"version": "0.1.0",
"description": "Advanced wrapper over MidiConvert project to convert into stream-able ready events for NN consumption.",
"main": "lib/index.js",
"scripts": {
"start": "npm run clean && webpack --progress --colors --watch",
"build": "npm run clean && webpack --progress --colors",
"clean": "rm -rf build/",
"deploy": "npm run build && ./deploy.sh",
"test": "npm run lint && jest -t",
"test:dev": "jest --watchAll -t",
"test:coverage": "jest -t --coverage",
"lint": "tslint -p ./tsconfig.json"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jsphweid/MidiConvertWrapperAdvanced.git"
},
"author": "Joseph Weidinger",
"license": "MIT",
"bugs": {
"url": "https://github.com/jsphweid/MidiConvertWrapperAdvanced/issues"
},
"jest": {
"setupFiles": [],
"moduleFileExtensions": [
"ts",
"js"
],
"transform": {
"\\.(ts)$": "./node_modules/ts-jest/preprocessor.js"
},
"testRegex": "/src/.*\\.test.(ts|js)$"
},
"homepage": "https://github.com/jsphweid/MidiConvertWrapperAdvanced#readme",
"devDependencies": {
"@types/jest": "^21.1.6",
"@types/node": "^8.0.56",
"@types/webpack": "^3.0.14",
"awesome-typescript-loader": "^3.2.3",
"jest": "^21.2.1",
"jsmidgen": "^0.1.5",
"midi-file-parser": "^1.0.0",
"midiconvert": "^0.4.2",
"ts-jest": "^21.2.2",
"tslint": "^5.8.0",
"tslint-config-airbnb": "^5.4.2",
"tslint-eslint-rules": "^4.1.1",
"typescript": "^2.5.3",
"webpack": "^3.8.1"
}
}