forked from mohayonao/web-audio-engine
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
77 lines (77 loc) · 2.11 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "web-audio-engine",
"description": "Pure JS implementation of the Web Audio API",
"version": "0.10.3",
"author": "Nao Yonamine <[email protected]>",
"bugs": {
"url": "https://github.com/mohayonao/web-audio-engine/issues"
},
"dependencies": {
"audio-type": "^1.0.2",
"fourier-transform": "^1.0.2",
"nmap": "^0.9.0",
"scijs-window-functions": "^2.0.2",
"wav-decoder": "^1.1.0",
"wav-encoder": "^1.1.0"
},
"devDependencies": {
"babel-cli": "^6.14.0",
"babel-plugin-istanbul": "^2.0.1",
"babel-plugin-unassert": "^2.1.1",
"babel-preset-es2015": "^6.13.2",
"babel-preset-power-assert": "^1.0.0",
"babelify": "^7.3.0",
"browserify": "^13.1.0",
"eslint": "^3.5.0",
"mocha": "^3.0.2",
"npm-run-all": "^3.1.0",
"nyc": "^8.1.0",
"power-assert": "^1.4.1",
"run-with-mocha": "^0.2.0",
"sinon": "^1.17.5"
},
"engines": {
"node": ">= 4.0.0"
},
"files": [
"package.json",
"README.md",
"build",
"lib"
],
"homepage": "https://github.com/mohayonao/web-audio-engine/",
"keywords": [
"web audio api"
],
"license": "MIT",
"main": "lib/index.js",
"nyc": {
"require": [
"babel-register"
],
"exclude": [
"src/impl/dsp/*.js",
"test/**/*.js"
],
"sourceMap": false,
"instrument": false
},
"repository": {
"type": "git",
"url": "https://github.com/mohayonao/web-audio-engine.git"
},
"scripts": {
"build": "npm-run-all build:*",
"build:browser": "BABEL_ENV=build browserify src -s WebAudioEngine -o build/web-audio-engine.js -t [ babelify ]",
"build:to5": "BABEL_ENV=build babel --out-dir=lib src",
"clean": "rm -rf lib coverage .nyc_output npm-debug.log",
"cover": "BABEL_ENV=cover nyc --reporter text --reporter html npm test",
"lint": "eslint src test",
"postversion": "git push && git push --tags && npm run clean",
"prepublish": "npm-run-all clean lint test build",
"preversion": "npm-run-all clean lint test",
"test": "mocha",
"travis": "npm-run-all lint test",
"version": "npm run build && git add -A build"
}
}