forked from wavesjs/waves-loaders
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.54 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
{
"name": "waves-loaders",
"version": "0.1.1",
"description": "AudioBuffer loader and other loader utilities module",
"main": "dist/waves-loaders.js",
"standalone": "wavesLoaders",
"author": "Samuel Goldszmidt <[email protected]>",
"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 ./src; 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"
},
"license": "BSD-3",
"repository": {
"type": "git",
"url": "https://github.com/wavesjs/loaders"
},
"jshintConfig": {
"esnext": true,
"browser": true,
"node": true,
"devel": true
},
"dependencies": {
"babel-runtime": "5.8.20"
},
"devDependencies": {
"fs-extra": "^0.23.1",
"jshint": "^2.6.0",
"node-watch": "^0.3.4",
"sinon": "^1.14.1",
"tape": "^4.2.0",
"uglify-js": "^2.4.24"
},
"globalDependencies[nonStandard]": {
"esdoc": "0.4.1",
"babel": "^5.8.29",
"browserify": "^11.2.0",
"babelify": "^6.1.3",
"testling": "^1.7.1",
"coverify": "^1.4.0"
}
}