-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathpackage.json
56 lines (56 loc) · 1.64 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
{
"name": "node-pico",
"description": "Audio processor for the cross-platform",
"version": "2.1.0",
"author": "Nao Yonamine <[email protected]>",
"bugs": {
"url": "https://github.com/mohayonao/pico.js/issues"
},
"dependencies": {
"pico.driver.nodeaudio": "^1.0.0",
"pico.driver.webaudio": "^1.0.1"
},
"devDependencies": {
"babel": "^6.3.26",
"babel-cli": "^6.3.17",
"babel-eslint": "^4.1.6",
"babel-preset-es2015": "^6.3.13",
"browserify": "^12.0.1",
"eslint": "^1.10.3",
"eslint-config-mohayonao": "^0.1.0",
"espower-babel": "^4.0.1",
"isparta": "^4.0.0",
"mocha": "^2.3.4",
"power-assert": "^1.2.0",
"sinon": "^1.17.2",
"uglify-js": "^2.6.1"
},
"files": [
"package.json",
"README.md",
"index.js",
"lib"
],
"homepage": "https://github.com/mohayonao/pico.js/",
"keywords": [
"audio",
"webaudioapi"
],
"license": "MIT",
"main": "index.js",
"repository": {
"type": "git",
"url": "https://github.com/mohayonao/pico.js.git"
},
"scripts": {
"build": "npm run build:to5 && npm run build:browser && npm run build:minify",
"build:browser": "browserify lib/browser.js --standalone Pico -o build/pico.js",
"build:minify": "uglifyjs build/pico.js -o build/pico.min.js",
"build:to5": "babel src --out-dir lib --remove-comments",
"cover": "babel-node $(npm bin)/isparta cover --report text --report html _mocha",
"lint": "eslint src test",
"prepublish": "rm -rf lib && npm run lint && npm run test && npm run build:to5",
"test": "mocha --compilers js:espower-babel/guess",
"travis": "npm run lint && npm run test"
}
}