forked from netpro2k/networked-aframe
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
96 lines (96 loc) · 2.83 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
{
"name": "networked-aframe",
"version": "0.5.1",
"description": "A web framework for building multi-user virtual reality experiences.",
"homepage": "",
"main": "dist/networked-aframe.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 server/static/build.js",
"easyrtc-install": "cd ./node_modules/easyrtc; npm install; cd ../../;",
"dev": "npm run build && node ./server/easyrtc-server.js",
"dist": "webpack --config webpack.config.js && webpack -p --config webpack.prod.config.js",
"lint": "eslint src server tests *.js",
"prepublish": "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/easyrtc-server.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 server/static/build.js -v"
},
"repository": "networked-aframe/networked-aframe",
"dependencies": {
"easyrtc": "1.1.0",
"express": "^4.10.7",
"aframe-lerp-component": "^1.1.0",
"aframe-template-component": "3.2.1",
"serve-static": "^1.8.0",
"socket.io": "^1.4.5",
"socket.io-client": "^1.4.5"
},
"devDependencies": {
"aframe": "0.7.0",
"babel-core": "^6.22.1",
"babel-loader": "^6.2.10",
"babel-preset-es2015": "^6.22.0",
"browserify": "^14.0.0",
"browserify-derequire": "^0.9.4",
"browserify-istanbul": "^2.0.0",
"chai": "^3.5.0",
"chai-shallow-deep-equal": "^1.4.0",
"chalk": "^1.1.3",
"deep-equal": "^1.0.1",
"eslint": "^4.14.0",
"karma": "^1.4.1",
"karma-browserify": "^5.1.1",
"karma-chai-shallow-deep-equal": "0.0.4",
"karma-chrome-launcher": "^2.0.0",
"karma-coverage": "^1.1.1",
"karma-env-preprocessor": "^0.1.1",
"karma-firefox-launcher": "^1.0.0",
"karma-mocha": "^1.3.0",
"karma-mocha-reporter": "^2.1.0",
"karma-sinon-chai": "^1.2.4",
"mocha": "^3.2.0",
"node-fetch": "^1.6.3",
"semistandard": "^8.0.0",
"sinon": "^1.17.5",
"sinon-chai": "^2.8.0",
"snazzy": "^6.0.0",
"watchify": "^3.9.0",
"webpack": "^1.13.0"
},
"keywords": [
"3d",
"aframe",
"cardboard",
"components",
"multiplayer",
"networked",
"networking",
"oculus",
"three",
"three.js",
"rift",
"social",
"vive",
"vr",
"web-components",
"webvr"
],
"engines": {
"node": ">= 7.4.0",
"npm": "^4.0.5"
},
"babel": {
"presets": [
"es2015"
]
}
}