-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
51 lines (51 loc) · 1.4 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
49
50
51
{
"name": "adsr-envelope",
"description": "adsr envelope",
"version": "1.0.0",
"author": "mohayonao <[email protected]>",
"bugs": {
"url": "https://github.com/mohayonao/adsr-envelope/issues"
},
"dependencies": {},
"devDependencies": {
"babel": "^5.8.23",
"babel-eslint": "^4.1.1",
"babelify": "^6.3.0",
"browserify": "^11.0.1",
"eslint": "^1.3.1",
"espower-babel": "^3.3.0",
"isparta": "^3.0.4",
"mocha": "^2.3.0",
"power-assert": "^1.0.0",
"sinon": "^1.16.1",
"web-audio-test-api": "^0.3.6"
},
"files": [
"package.json",
"README.md",
"index.js",
"lib"
],
"homepage": "http://mohayonao.github.io/adsr-envelope/",
"keywords": [
"WebAudioAPI",
"adsr",
"envelope"
],
"license": "MIT",
"main": "index.js",
"repository": {
"type": "git",
"url": "https://github.com/mohayonao/adsr-envelope/"
},
"scripts": {
"build": "npm run build-to5 && npm run build-browser",
"build-browser": "browserify index.js --standalone ADSREnvelope -o build/adsr-envelope.js",
"build-to5": "babel src --out-dir lib",
"cover": "babel-node $(npm bin)/isparta cover --report text --report html _mocha",
"lint": "eslint src test",
"prepublish": "rm -rf lib && npm run lint && npm run test && npm run build-to5",
"test": "mocha --compilers js:espower-babel/guess",
"travis": "npm run lint && npm run test"
}
}