-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
40 lines (40 loc) · 1.02 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
{
"name": "@mohayonao/web-audio-utils",
"description": "Utility functions for Web Audio API",
"version": "0.7.1",
"author": "mohayonao <mohayonao@gmail.com>",
"bugs": {
"url": "https://github.com/mohayonao/web-audio-utils/issues"
},
"dependencies": {
"@mohayonao/utils": "^0.3.0"
},
"devDependencies": {
"eslint": "^1.2.1",
"espower-loader": "^1.0.0",
"intelli-espower-loader": "^1.0.0",
"istanbul": "^0.3.18",
"mocha": "^2.2.5",
"power-assert": "^1.0.0",
"sinon": "^1.16.1",
"web-audio-test-api": "^0.3.6"
},
"files": [
"package.json",
"README.md",
"*.js"
],
"license": "MIT",
"main": "index.js",
"repository": {
"type": "git",
"url": "https://github.com/mohayonao/web-audio-utils/"
},
"scripts": {
"cover": "istanbul cover --report text --report html _mocha",
"lint": "eslint ./*.js test",
"prepublish": "npm run lint && npm run test",
"test": "mocha --require intelli-espower-loader",
"travis": "npm run lint && npm run test"
}
}