-
Notifications
You must be signed in to change notification settings - Fork 31
/
package.json
67 lines (67 loc) · 2.22 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
{
"name": "aframe-motion-capture-components",
"version": "0.2.7",
"description": "A-Frame motion capture components",
"author": "Diego Marcos <[email protected]>",
"license": "MIT",
"main": "src/index.js",
"scripts": {
"build": "cross-env NODE_ENV=production webpack --config webpack.dev.js",
"start": "webpack-dev-server --host 0.0.0.0 --config webpack.dev.js --progress --colors --hot -d --open --inline",
"dist": "webpack src/index.js dist/aframe-motion-capture-components.js && webpack -p src/index.js dist/aframe-motion-capture-components.min.js", "lint": "semistandard -v | snazzy",
"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 && gh-pages -d gh-pages",
"test": "karma start ./tests/karma.conf.js",
"test:firefox": "karma start ./tests/karma.conf.js --browsers Firefox",
"test:chrome": "karma start ./tests/karma.conf.js --browsers Chrome"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dmarcos/aframe-motion-capture-components.git"
},
"keywords": [
"aframe",
"a-frame",
"aframe-component",
"aframe-vr",
"vr",
"webgl",
"webvr",
"mozvr"
],
"bugs": {
"url": "https://github.com/dmarcos/aframe-motion-capture-components/issues"
},
"homepage": "https://github.com/dmarcos/aframe-motion-capture-components#readme",
"devDependencies": {
"aframe": "^0.8.2",
"chai": "^3.4.1",
"chai-shallow-deep-equal": "^1.3.0",
"cross-env": "^3.1.3",
"gh-pages": "^0.11.0",
"karma": "^0.13.15",
"karma-browserify": "^4.4.2",
"karma-chai-shallow-deep-equal": "0.0.4",
"karma-chrome-launcher": "2.0.0",
"karma-env-preprocessor": "^0.1.1",
"karma-firefox-launcher": "^0.1.7",
"karma-mocha": "^0.2.1",
"karma-mocha-reporter": "^1.1.3",
"karma-sinon-chai": "^1.1.0",
"mocha": "^2.3.4",
"semistandard": "^8.0.0",
"shx": "^0.1.1",
"sinon": "^1.17.5",
"sinon-chai": "^2.8.0",
"snazzy": "^4.0.0",
"webpack": "^1.13.0",
"webpack-dev-server": "^1.16.2"
},
"semistandard": {
"ignore": [
"examples/js/build.js",
"dist/**"
]
}
}