forked from adamtomat/stereo-panner-shim
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.28 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
{
"name": "stereo-panner-shim",
"description": "StereoPanner compatibility shim for legacy Web Audio API",
"version": "0.1.4",
"author": "nao yonamine <[email protected]>",
"bugs": {
"url": "https://github.com/mohayonao/stereo-panner-shim/issues"
},
"dependencies": {
"stereo-panner-node": "^1.3.3"
},
"devDependencies": {
"browserify": "^8.1.3",
"jshint": "^2.6.0",
"jshint-stylish": "^1.0.0",
"mocha": "^2.1.0",
"uglify-js": "^2.4.16",
"web-audio-test-api": "^0.2.1"
},
"files": [
"lib",
"package.json",
"README.md"
],
"homepage": "http://mohayonao.github.io/stereo-panner-shim/",
"keywords": [
"webaudioapi",
"stereopanner",
"shim"
],
"license": "MIT",
"main": "lib/stereo-panner-shim.js",
"repository": {
"type": "git",
"url": "git://github.com/mohayonao/stereo-panner-shim.git"
},
"scripts": {
"build": "npm run build-browser && npm run build-minify",
"build-browser": "browserify lib/stereo-panner-shim.js -o build/stereo-panner-shim.js",
"build-minify": "uglifyjs build/stereo-panner-shim.js -o build/stereo-panner-shim.min.js",
"lint": "jshint --reporter node_modules/jshint-stylish/stylish.js lib test",
"test": "mocha",
"travis": "npm run lint && npm run test"
}
}