forked from immersive-web/webxr-input-profiles
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (65 loc) · 1.74 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": "webxr-input-profiles",
"version": "0.1.0",
"description": "A tool for making W3C Gamepad objects easier to work with in XR on the web",
"author": "Nell Waliczek <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/immersive-web/webxr-input-profiles.git"
},
"bugs": {
"url": "https://github.com/immersive-web/webxr-input-profiles/issues"
},
"homepage": "https://immersive-web.github.io/webxr-input-profiles",
"keywords": [
"WebXR",
"WebVR",
"ImmersiveWeb",
"Immersive Web",
"AR",
"Virtual Reality",
"Augmented Reality",
"Mixed Reality",
"VR",
"XR",
"AR/VR",
"VR/AR",
"Gamepad",
"Gamepads",
"Motion controllers",
"MotionControllers"
],
"scripts": {
"clean": "npx lerna run clean",
"lint": "eslint ./",
"lintFix": "eslint ./ --fix",
"build": "npx lerna run build",
"testOnly": "jest",
"watch": "npx lerna run watch --no-sort --stream",
"dev": "http-server -c-1 -p 8080",
"prepublishOnly": "npm run lint && npm run build && npx lerna bootstrap",
"pretest": "npm run prepublishOnly",
"test": "npm run testOnly"
},
"devDependencies": {
"@babel/plugin-transform-spread": "^7.2.2",
"@babel/preset-env": "^7.3.4",
"ajv": "^6.10.0",
"babel-jest": "^24.1.0",
"eslint": "^5.16.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-plugin-import": "^2.17.2",
"eslint-plugin-jest": "^22.15.2",
"fs-extra": "^8.1.0",
"glob": "^7.1.4",
"gulp": "^4.0.2",
"http-server": "^0.11.1",
"jest": "^24.1.0",
"jest-fetch-mock": "^2.1.2",
"lerna": "^3.16.4",
"rollup": "^1.4.0",
"rollup-plugin-copy-glob": "^0.3.1",
"three": "^0.106.2"
}
}