forked from networked-aframe/networked-aframe
-
Notifications
You must be signed in to change notification settings - Fork 16
/
package.json
89 lines (89 loc) · 2.55 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
{
"name": "networked-aframe",
"version": "0.6.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 server/static/build.js",
"dist": "webpack --config webpack.config.js && webpack -p --config webpack.prod.config.js",
"lint": "eslint src 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",
"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": {
"buffered-interpolation": "github:Infinitelee/buffered-interpolation#5bb18421ebf2bf11664645cdc7a15bd77ee2156b"
},
"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",
"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"
},
"peerDependencies": {
"bitecs": "^0.3.38"
},
"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"
]
}
}