-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
56 lines (56 loc) · 1.78 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": "wax-core",
"version": "0.1.1",
"description": "An experimental, JSX-compatible renderer for the Web Audio API",
"main": "dist/index.js",
"scripts": {
"build": "babel src --out-dir dist",
"build-example": "mkdir -p example/dist && rm -rf example/dist/* && rollup -c && bash -c 'cp -r example/src/*.{html,mp3} example/dist'",
"dev": "npm run build && npm run build-example && node example/devServer",
"test": "eslint --ext js --ext jsx src example/src && jest",
"test:ci": "npm test -- --coverage --coverageReporters=text-lcov | coveralls"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jamesseanwright/wax.git"
},
"keywords": [
"web",
"audio",
"api",
"components",
"jsx",
"react"
],
"author": "James Wright <[email protected]>",
"license": "ISC",
"bugs": {
"url": "https://github.com/jamesseanwright/wax/issues"
},
"homepage": "https://github.com/jamesseanwright/wax#readme",
"devDependencies": {
"@babel/cli": "7.0.0",
"@babel/core": "7.0.0",
"@babel/plugin-proposal-object-rest-spread": "7.0.0",
"@babel/plugin-transform-modules-commonjs": "7.1.0",
"@babel/plugin-transform-react-jsx": "7.0.0",
"@babel/preset-react": "7.0.0",
"babel-core": "7.0.0-bridge.0",
"babel-jest": "23.6.0",
"babel-plugin-transform-inline-environment-variables": "0.4.3",
"coveralls": "3.0.2",
"eslint": "5.5.0",
"eslint-plugin-react": "7.11.1",
"jest": "23.6.0",
"node-static": "0.7.10",
"nyc": "^13.0.1",
"react": "16.5.0",
"react-dom": "16.5.0",
"remove": "^0.1.5",
"rollup": "0.65.0",
"rollup-plugin-alias": "1.4.0",
"rollup-plugin-babel": "4.0.2",
"rollup-plugin-commonjs": "9.1.6",
"rollup-plugin-node-resolve": "3.3.0"
}
}