-
Notifications
You must be signed in to change notification settings - Fork 71
/
package.json
86 lines (86 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
{
"name": "super-hands",
"version": "3.0.4",
"description": "All-in-one natural hand controller interaction component for A-Frame.",
"main": "index.js",
"scripts": {
"build": "browserify --im examples/main.js -o examples/build.js ",
"dev": "budo examples/main.js:build.js --dir examples --port 8000 --live --open -- --im",
"record": "budo machinima_tests/main.js:build.js --dir machinima_tests/scenes --port 8000 --live --open --im",
"dist": "browserify --im index.js -o dist/super-hands.js -t [ babelify ] && cross-env NODE_ENV=production browserify --im index.js -o dist/super-hands.min.js -t [ babelify ]",
"lint": "standard -v | snazzy",
"prepublishOnly": "npm run dist && npm run build",
"start": "npm run dev",
"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",
"test:ci": "TEST_ENV=ci karma start ./tests/karma.conf.js --single-run --browsers Firefox"
},
"repository": {
"type": "git",
"url": "git+https://github.com/c-frame/aframe-super-hands-component.git"
},
"keywords": [
"aframe",
"aframe-component",
"aframe-vr",
"vr",
"mozvr",
"webvr",
"super-hands",
"controls",
"tracked-controls",
"hand-controls",
"grab",
"drag-drop",
"stretch"
],
"author": "William Murphy [email protected]",
"license": "MIT",
"bugs": {
"url": "https://github.com/c-frame/aframe-super-hands-component/issues"
},
"homepage": "https://github.com/c-frame/aframe-super-hands-component#readme",
"devDependencies": {
"@babel/preset-env": "^7.20.2",
"@c-frame/aframe-physics-system": "^4.1.0",
"aframe": "^1.6.0",
"aframe-event-set-component": "^5.0.0",
"aframe-extras": "^6.1.1",
"aframe-motion-capture-components": "github:wmurphyrd/aframe-motion-capture-components#v0.2.8a",
"babel-preset-minify": "^0.5.2",
"babelify": "^10.0.0",
"browserify": "^17.0.0",
"browserify-css": "^0.15.0",
"budo": "^11.8.4",
"chai": "^4.3.7",
"chai-shallow-deep-equal": "^1.4.0",
"cross-env": "^7.0.3",
"envify": "^4.1.0",
"karma": "^6.4.1",
"karma-browserify": "^8.1.0",
"karma-chai-shallow-deep-equal": "0.0.4",
"karma-chrome-launcher": "^3.1.1",
"karma-coverage": "^2.2.0",
"karma-env-preprocessor": "^0.1.1",
"karma-firefox-launcher": "^2.1.2",
"karma-html2js-preprocessor": "^1.1.0",
"karma-mocha": "^2.0.1",
"karma-mocha-reporter": "^2.1.0",
"karma-sinon-chai": "^2.0.2",
"mocha": "^10.2.0",
"sinon": "^15.0.1",
"sinon-chai": "^3.7.0",
"snazzy": "^9.0.0",
"standard": "^17.0.0"
},
"standard": {
"ignore": [
"examples/build.js",
"dist/**"
]
},
"dependencies": {
"@babel/core": "^7.20.7"
}
}