-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
51 lines (51 loc) · 1.55 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": "biquad-filter",
"exports": "BiquadFilter",
"standalone": "BiquadFilter",
"version": "0.1.0",
"description": "Biquad filter",
"main": "biquad-filter.js",
"repository": {
"type": "git",
"url": "https://github.com/Ircam-RnD/biquad-filter"
},
"author": "Arnau Julià <[email protected]>",
"license": "BSD-3",
"scripts": {
"transpile": "node ./bin/scripts.js --transpile",
"prebundle": "npm run hint && npm run transpile",
"bundle": "node ./bin/scripts.js --bundle",
"postbundle": "npm run uglify",
"uglify": "node ./bin/scripts.js --uglify",
"watch": "node ./bin/scripts.js --watch",
"test": "browserify -t [ babelify --blacklist regenerator ] tests/*.js | testling -u --no-show",
"pretest": "npm run hint",
"hint": "jshint ./es6; true",
"coverage": "browserify -t [ babelify --blacklist regenerator ] -t coverify tests/*.js | testling -u --no-show | coverify --json -o coverage.json && node ./bin/scripts.js --cover-report -i coverage.json"
},
"dependencies": {
"babel-runtime": "^5.8.20"
},
"devDependencies": {
"babel": "^5.8.23",
"babelify": "^6.2.0",
"browserify": "^11.0.1",
"coverify": "^1.4.1",
"jshint": "^2.8.0",
"testling": "^1.7.1",
"cli-color": "^1.0.0",
"fs-extra": "^0.23.1",
"minimist": "^1.2.0",
"node-string-pad": "0.0.4",
"node-watch": "^0.3.4",
"sinon": "^1.14.1",
"tape": "^4.2.0",
"uglify-js": "^2.4.24"
},
"jshintConfig": {
"esnext": true,
"browser": true,
"node": true,
"devel": true
}
}