-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
53 lines (53 loc) · 1.63 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
52
53
{
"name": "waves-loaders",
"version": "0.1.6",
"description": "AudioBuffer loader and other loader utilities module",
"main": "dist/index.js",
"standalone": "wavesLoaders",
"author": "Samuel Goldszmidt <[email protected]>",
"scripts": {
"bundle": "node ./bin/runner --bundle",
"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",
"deploy": "np --yolo",
"hint": "jshint ./src; true",
"pretest": "npm run hint",
"prewatch": "npm run transpile",
"test": "browserify -t [ babelify --blacklist regenerator ] tests/*.js | testling -u --no-show",
"transpile": "node ./bin/runner --transpile",
"version": "npm run transpile",
"watch": "node ./bin/runner --watch"
},
"license": "BSD-3",
"repository": {
"type": "git",
"url": "https://github.com/wavesjs/loaders"
},
"jshintConfig": {
"esnext": true,
"browser": true,
"node": true,
"devel": true
},
"dependencies": {
"babel-runtime": "^6.26.0"
},
"devDependencies": {
"babel-core": "^6.26.3",
"babel-plugin-transform-es2015-modules-commonjs": "^6.26.2",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-es2015": "^6.24.1",
"browserify": "^16.2.2",
"colors": "^1.3.0",
"coverify": "^1.5.0",
"esdoc": "^1.1.0",
"fs-extra": "^6.0.1",
"jshint": "^2.9.5",
"klaw": "^2.1.1",
"np": "^3.0.1",
"sinon": "^5.0.10",
"tape": "^4.9.0",
"testling": "^1.7.1",
"uglify-js": "^3.3.27",
"watch": "^1.0.2"
}
}