-
Notifications
You must be signed in to change notification settings - Fork 24
/
package.json
42 lines (42 loc) · 1.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
{
"name": "aframe-leap-hands",
"version": "0.8.0",
"description": "Leap Motion components for A-Frame VR",
"source": "src/index.js",
"main": "dist/aframe-leap-hands.js",
"module": "dist/aframe-leap-hands.module.js",
"scripts": {
"dev": "concurrently \"microbundle watch --target browser\" \"serve --listen 5000\"",
"test": "echo \"Error: no test specified\" && exit 1",
"dist": "microbundle --target browser",
"version": "npm run dist && git add -A dist",
"postversion": "git push && git push --tags && npm publish"
},
"repository": {
"type": "git",
"url": "git+https://github.com/donmccurdy/aframe-leap-hands.git"
},
"keywords": [
"aframe",
"aframevr",
"leap",
"leapmotion",
"vr",
"hand"
],
"author": "Don McCurdy <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/donmccurdy/aframe-leap-hands/issues"
},
"homepage": "https://github.com/donmccurdy/aframe-leap-hands#readme",
"dependencies": {},
"devDependencies": {
"concurrently": "^4.0.1",
"microbundle": "^0.6.0",
"serve": "^10.0.1"
},
"peerDependencies": {
"aframe": "^0.8.2"
}
}