-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
47 lines (47 loc) · 1.01 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": "@garrensmith/abletonpush",
"version": "1.0.1",
"description": "A library to work with the Ableton Push 2 in the browser",
"main": "dist/index.js",
"files": [
"dist",
"LICENSE",
"README.md"
],
"scripts": {
"build": "babel src -d dist",
"clean": "rimraf dist",
"dist": "npm run clean && npm run build",
"test": "jest",
"lint": "eslint ./src ./__test__",
"prepublish": "npm run dist"
},
"keywords": [
"ableton",
"push",
"webaudio",
"webmidi",
"ableton",
"push",
"ableton",
"push",
"push 2"
],
"author": "Garren Smith <garren.smith@gmail.com>",
"license": "apache-2.0",
"dependencies": {
"eventemitter2": "^5.0.1",
"lodash.clone": "^4.5.0",
"lodash.range": "^3.2.0",
"webmidi": "^2.0.5"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-jest": "^23.0.1",
"babel-preset-env": "^1.7.0",
"eslint": "^4.19.1",
"jest": "^23.1.0",
"rimraf": "^2.6.2"
}
}