-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
executable file
·65 lines (65 loc) · 2.04 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
{
"name": "aframe-ambisonic-component",
"version": "0.5.3",
"description": "A Ambisonic Audio component for A-Frame.",
"main": "build/index.js",
"module": "src/index.js",
"unpkg": "build/aframe-ambisonic-component.min.js",
"repository": {
"type": "git",
"url": "git+https://github.com/datavized/aframe-ambisonic-component.git"
},
"keywords": [
"aframe",
"aframe-component",
"aframe-vr",
"vr",
"webvr",
"omnitone",
"ambisonic",
"audio",
"sound"
],
"author": "Brian Chirls <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/datavized/aframe-ambisonic-component/issues"
},
"homepage": "https://github.com/datavized/aframe-ambisonic-component#readme",
"scripts": {
"start": "webpack-dev-server --config ./config/webpack-dev.js --mode development --progress --colors",
"build": "rm -rf build/ && webpack --config ./config/webpack-prod.js --mode production && webpack --config ./config/webpack-prod-no-omnitone.js --mode production && webpack --config ./config/webpack-npm.js --mode production",
"deploy": "./gh-pages.sh",
"lint": "eslint ./; true",
"lint-fix": "eslint --fix ./; true",
"prepublishOnly": "npm run build"
},
"dependencies": {
"omnitone": "^1.3.0"
},
"devDependencies": {
"@babel/core": "^7.11.0",
"@babel/plugin-proposal-class-properties": "^7.10.4",
"@babel/plugin-proposal-object-rest-spread": "^7.11.0",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/plugin-transform-runtime": "^7.11.0",
"@babel/polyfill": "^7.10.4",
"@babel/preset-env": "^7.11.0",
"aframe": "^1.0.4",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.1.0",
"datavized-code-style": "github:datavized/code-style",
"eslint": "^6.8.0",
"eslint-config-crockford": "^2.0.0",
"eslint-loader": "^3.0.4",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"fast-async": "^6.3.8",
"webpack": "^4.44.1",
"webpack-cli": "^3.3.12",
"webpack-dev-server": "^3.11.0",
"webpack-merge": "^4.2.2",
"webpack-node-externals": "^1.7.2"
}
}