forked from benji6/virtual-audio-graph
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.3 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
{
"name": "virtual-audio-graph",
"version": "0.19.1",
"description": "Library for declaratively manipulating the Web Audio API",
"keywords": [
"api",
"audio",
"audiograph",
"declarative",
"functional",
"graph",
"virtual-audio-graph",
"virtual",
"web"
],
"main": "dist/index.js",
"jsnext:main": "src/index.js",
"repository": {
"type": "git",
"url": "https://github.com/benji6/virtual-audio-graph.git"
},
"scripts": {
"build": "rollup -c",
"docs": "rollup -c rollup.config.docs.js",
"prepublish": "npm run build && npm test",
"spec": "npm run build && tape 'test/**/*.js'",
"spec-watch": "nodemon --watch src --watch test --exec npm run spec",
"test": "eslint . && npm run spec",
"test-watch": "nodemon --watch src --watch test --exec npm t"
},
"author": "Ben Hall",
"license": "MIT",
"bugs": {
"url": "https://github.com/benji6/virtual-audio-graph/issues"
},
"homepage": "https://github.com/benji6/virtual-audio-graph",
"devDependencies": {
"babel-preset-es2015-rollup": "^3.0.0",
"babelrc-rollup": "^3.0.0",
"eslint": "^4",
"eslint-config-benji6": "^1.2.0",
"nodemon": "^1.9.2",
"rollup": "^0.45.0",
"rollup-plugin-babel": "^2.6.1",
"tape": "^4.5.1",
"web-audio-test-api": "^0.5.2"
}
}