-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 946 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 946 Bytes
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
{
"name": "playnote",
"version": "0.1.2",
"description": "Play your favorite instrument in the browser, with complex note intervals and scales",
"main": "index.js",
"author": "Matteo De Micheli",
"license": "AGPL-3.0",
"scripts": {
"test": "jest --watch",
"prepublish": "npm run build-babel",
"build-babel": "babel src -d lib"
},
"dependencies": {
"howler": "^2.0.3",
"lodash": "^4.17.4"
},
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-jest": "^19.0.0",
"babel-plugin-transform-async-to-generator": "^6.24.1",
"babel-plugin-transform-object-rest-spread": "^6.23.0",
"babel-plugin-transform-regenerator": "^6.24.1",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-polyfill": "^6.23.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-es2016": "^6.24.1",
"babel-preset-es2017": "^6.24.1",
"jest": "^19.0.2",
"regenerator-runtime": "^0.10.5"
}
}