forked from c-frame/aframe-extras
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
65 lines (65 loc) · 2.15 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-extras",
"version": "2.7.5",
"description": "Add-ons and examples for A-Frame VR.",
"author": "Don McCurdy <dm@donmccurdy.com>",
"license": "MIT",
"main": "index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/donmccurdy/aframe-extras.git"
},
"scripts": {
"dev": "budo --port=9000 browser.js:examples/aframe-extras.js",
"dev:win": "live-server . --port=9000 --no-browser & watch-exec -c 'browserify browser.js -d -o examples/aframe-extras.js' -w src",
"build": "./scripts/build.js",
"dist": "./scripts/dist.js",
"test": "karma start ./tests/karma.conf.js",
"test:once": "karma start ./tests/karma.conf.js --single-run",
"test:firefox": "karma start ./tests/karma.conf.js --browsers Firefox",
"test:chrome": "karma start ./tests/karma.conf.js --browsers Chrome",
"test:ci": "TEST_ENV=ci karma start ./tests/karma.conf.js --single-run --browsers Firefox",
"preversion": "npm run test:once",
"preversion:readme": "replace 'aframe-extras/v\\d+\\.\\d+\\.\\d+' \"aframe-extras/v$npm_package_version\" ./README.md",
"version": "npm run preversion:readme && npm run dist && git add -A dist README.md",
"postversion": "git push && git push --tags && npm publish"
},
"peerDependencies": {
"aframe": "^0.3.1"
},
"dependencies": {
"aframe-physics-system": "^1.0.2",
"cannon": "^0.6.2",
"three-to-cannon": "^1.0.0"
},
"devDependencies": {
"aframe": "^0.3.1",
"browserify": "^13.0.0",
"budo": "^9.0.0",
"chai": "^3.5.0",
"chai-shallow-deep-equal": "^1.3.0",
"chalk": "^1.1.1",
"fs-extra": "^0.30.0",
"karma": "^1.2.0",
"karma-browserify": "^5.1.0",
"karma-chai-shallow-deep-equal": "0.0.4",
"karma-chrome-launcher": "^2.0.0",
"karma-env-preprocessor": "^0.1.1",
"karma-firefox-launcher": "^1.0.0",
"karma-mocha": "^1.1.1",
"karma-mocha-reporter": "^2.1.0",
"karma-sinon-chai": "^1.1.0",
"mocha": "^3.0.2",
"replace": "^0.3.0",
"sinon": "^1.17.3",
"sinon-chai": "^2.8.0",
"uglify-js": "^2.6.2"
},
"keywords": [
"aframe",
"a-frame",
"vr",
"webgl",
"webvr"
]
}