forked from mohayonao/web-audio-test-api
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.77 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
{
"name": "lumen5-web-audio-test-api",
"description": "Web Audio API test library for CI",
"version": "0.5.2",
"author": "Nao Yonamine <mohayonao@gmail.com>",
"bugs": {
"url": "https://github.com/mohayonao/web-audio-test-api/issues"
},
"dependencies": {},
"devDependencies": {
"babel-cli": "^6.3.15",
"babel-eslint": "^4.1.6",
"babel-plugin-transform-decorators-legacy": "^1.2.0",
"babel-plugin-transform-es2015-modules-commonjs": "^6.3.16",
"babel-preset-es2015": "^6.3.13",
"babel-preset-stage-0": "^6.3.13",
"babel-register": "^6.3.13",
"babelify": "^7.2.0",
"browserify": "^12.0.1",
"eslint": "^1.10.3",
"eslint-config-mohayonao": "^0.1.0",
"espower-babel": "^4.0.0",
"isparta": "^4.0.0",
"lodash": "^3.10.1",
"mocha": "^2.3.4",
"power-assert": "^1.2.0",
"sinon": "^1.17.2"
},
"files": [
"package.json",
"README.md",
"index.js",
"lib",
"build"
],
"homepage": "https://github.com/Lumen5/web-audio-test-api",
"keywords": [
"test",
"web audio api"
],
"license": "MIT",
"main": "index.js",
"repository": {
"type": "git",
"url": "https://github.com/Lumen5/web-audio-test-api.git"
},
"scripts": {
"build": "npm run build:to5 && npm run build:browser",
"build:browser": "browserify index.js --standalone WebAudioTestAPI -o build/web-audio-test-api.js",
"build:to5": "babel src --out-dir lib",
"cover": "babel-node $(npm bin)/isparta cover --report text --report html --report lcov _mocha",
"lint": "eslint src test",
"prepublish": "npm run lint && npm run test && npm run build",
"test": "mocha --compilers js:babel-register",
"test:pow": "mocha --compilers js:espower-babel/guess",
"travis": "npm run lint && npm run test"
}
}