-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathpackage.json
44 lines (44 loc) · 1.24 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
{
"name": "aframe-blink-controls",
"version": "0.4.3",
"description": "Blink controls component for A-Frame.",
"main": "src/index.js",
"unpkg": "dist/aframe-blink-controls.min.js",
"scripts": {
"dev": "webpack-dev-server --disable-host-check --mode development",
"dist": "webpack --mode production -c ./webpack.config.js",
"lint": "eslint src/",
"prepublish": "npm run dist",
"start": "npm run dev"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jure/aframe-blink-controls.git"
},
"keywords": [
"aframe",
"aframe-component",
"aframe-vr",
"vr",
"webxr",
"blink-controls",
"teleport"
],
"author": "Jure Triglav, Fernando Serrano (original author of aframe-teleport-controls)",
"license": "MIT",
"bugs": {
"url": "https://github.com/jure/aframe-blink-controls/issues"
},
"homepage": "https://github.com/jure/aframe-blink-controls#readme",
"devDependencies": {
"aframe": "^1.3.0",
"eslint": "^7.15.0",
"eslint-config-standard": "^16.0.2",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"webpack": "^5.69.1",
"webpack-cli": "^4.9.2",
"webpack-dev-server": "^4.7.4"
}
}