This repository has been archived by the owner on Jun 9, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 32
/
package.json
67 lines (67 loc) · 1.97 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
{
"name": "web-audio-engine",
"description": "Pure JS implementation of the Web Audio API",
"version": "0.13.4",
"author": "Nao Yonamine <[email protected]>",
"bugs": {
"url": "https://github.com/mohayonao/web-audio-engine/issues"
},
"dependencies": {
"audio-type": "^1.0.2",
"biquad-coeffs-webaudio": "^1.2.0",
"fourier-transform": "^1.0.2",
"nmap": "^1.1.0",
"scijs-window-functions": "^2.0.2",
"wav-decoder": "^1.1.0",
"wav-encoder": "^1.1.0"
},
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-plugin-istanbul": "^4.1.1",
"babel-plugin-unassert": "^2.1.2",
"babel-preset-es2015": "^6.24.1",
"babel-preset-power-assert": "^1.0.0",
"babelify": "^7.3.0",
"browserify": "^14.3.0",
"eslint": "^3.19.0",
"mocha": "^3.3.0",
"npm-run-all": "^4.0.2",
"nyc": "^10.2.0",
"power-assert": "^1.4.2",
"run-with-mocha": "^1.1.0",
"sinon": "^2.1.0"
},
"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",
"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"
}
}