-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
33 lines (33 loc) · 1.05 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
{
"name": "@mitchallen/three-xr-controller",
"version": "0.1.4",
"description": "",
"main": "dist/three-xr-controller.js",
"module": "dist/three-xr-controller.module.js",
"source": "src/three-xr-controller.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"web-server": "python -m SimpleHTTPServer $PORT || 8000",
"inuse": "lsof -i :8000",
"// preversion": "npm run dist && npm test",
"preversion": "npm run dist",
"dev": "microbundle watch --globals three=THREE --external three",
"dist": "microbundle --globals three=THREE --external three",
"version": "git add -A dist",
"postversion": "git push && git push --tags && npm publish",
"pub:patch": "npm version patch -m 'Upgrade to %s for reasons'"
},
"author": "Mitch Allen",
"license": "MIT",
"peerDependencies": {
"three": "^0.123.0"
},
"devDependencies": {
"microbundle": "^0.12.4",
"three": "^0.123.0"
},
"repository": {
"type": "git",
"url": "https://github.com/mitchallen/three-xr-controller.git"
}
}