forked from networked-aframe/networked-aframe
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
97 lines (97 loc) · 2.75 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
{
"name": "networked-aframe",
"version": "0.7.1",
"description": "A web framework for building multi-user virtual reality experiences.",
"homepage": "",
"main": "src/index.js",
"author": "Hayden Lee <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/networked-aframe/networked-aframe/issues"
},
"scripts": {
"build": "browserify src/index.js -o examples/build.js",
"dev": "npm run build && node ./server/index.js",
"dist": "webpack --config webpack.config.js && webpack -p --config webpack.prod.config.js",
"lint": "eslint src tests *.js",
"prepare": "npm run dist",
"preghpages": "npm run build && shx rm -rf gh-pages && shx mkdir gh-pages && shx cp -r examples/* gh-pages",
"ghpages": "npm run preghpages && ghpages -p gh-pages",
"start": "node ./server/index.js",
"test": "karma start ./tests/unit/karma.conf.js",
"test:firefox": "karma start ./tests/unit/karma.conf.js --browsers Firefox",
"test:chrome": "karma start ./tests/unit/karma.conf.js --browsers Chrome",
"watch": "watchify src/index.js -o examples/build.js -v"
},
"repository": "networked-aframe/networked-aframe",
"dependencies": {
"buffered-interpolation": "^0.2.5",
"express": "^4.17.1",
"socket.io": "^2.3.0"
},
"devDependencies": {
"aframe": "~1.0.0",
"@babel/core": "~7.8.3",
"@babel/preset-env": "~7.8.3",
"babel-loader": "8.0.0-beta.1",
"browserify": "^14.0.0",
"browserify-css": "^0.15.0",
"browserify-derequire": "^1.0.1",
"browserify-istanbul": "^2.0.0",
"chai": "^3.5.0",
"chai-shallow-deep-equal": "^1.4.0",
"chalk": "^1.1.3",
"envify": "^4.1.0",
"eslint": "^6.6.0",
"karma": "^1.4.1",
"karma-browserify": "^5.3.0",
"karma-chai-shallow-deep-equal": "0.0.4",
"karma-chrome-launcher": "^2.0.0",
"karma-coverage": "^1.1.2",
"karma-env-preprocessor": "^0.1.1",
"karma-firefox-launcher": "^1.3.0",
"karma-mocha": "^1.3.0",
"karma-mocha-reporter": "^2.2.5",
"karma-sinon-chai": "^1.3.4",
"mocha": "^4.0.0",
"node-fetch": "^1.6.3",
"semistandard": "^13.0.1",
"serve-static": "^1.14.1",
"sinon": "^1.17.5",
"sinon-chai": "^2.8.0",
"snazzy": "^8.0.0",
"watchify": "^3.11.1",
"webpack": "^4.41.5",
"webpack-cli": "^3.3.10",
"webpack-dev-middleware": "^3.7.2"
},
"keywords": [
"3d",
"aframe",
"cardboard",
"components",
"multiplayer",
"networked",
"networking",
"oculus",
"three",
"three.js",
"rift",
"quest",
"webrtc",
"social",
"vive",
"vr",
"web-components",
"webvr"
],
"engines": {
"node": ">= 8.10.0",
"npm": ">= 4.0.5"
},
"babel": {
"presets": [
"@babel/preset-env"
]
}
}