-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
36 lines (36 loc) · 1 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
{
"name": "ableton-push2",
"version": "0.1.4",
"description": "NodeJs library for communicating with the Ableton Push 2 MIDI controller.",
"main": "dist/index.js",
"scripts": {
"test": "node node_modules/mocha/bin/mocha test --exit",
"build": "node node_modules/gulp/bin/gulp.js build",
"typescript": "node node_modules/typescript/bin/tsc",
"watch": "node node_modules/gulp/bin/gulp.js watch"
},
"repository": {
"type": "git",
"url": "https://github.com/samhiatt/node-ableton-push2.git"
},
"author": "Sam Hiatt [samhiatt@gmail.com]",
"license": "ISC",
"dependencies": {
"colormap": "^2.3.2",
"deep-equal": "^2.0.5",
"easymidi": "^2.0.5",
"midi-stream": "^1.3.2"
},
"devDependencies": {
"@types/mocha": "^8.2.2",
"@types/node": "^15.12.1",
"chai": "^4.3.4",
"gulp": "^4.0.2",
"gulp-typedoc": "^3.0.0",
"gulp-typescript": "^5.0.1",
"merge2": "^1.4.1",
"mocha": "^8.4.0",
"typedoc": "^0.20.36",
"typescript": "^4.2.4"
}
}