-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.25 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.25 KB
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
{
"name": "device-orientation-control",
"version": "1.0.0",
"description": "Device orientation camera control with gl-matrix",
"main": "lib/index.js",
"dependencies": {
"gl-matrix": "^2.3.2"
},
"devDependencies": {
"babel-cli": "^6.18.0",
"babel-plugin-add-module-exports": "0.1.2",
"babel-preset-es2015": "^6.18.0",
"babel-preset-es2015-loose": "^8.0.0",
"babelify": "^7.3.0",
"eslint": "^3.11.1"
},
"author": "Jojo & Yiwenl",
"license": "ISC",
"scripts": {
"lib": "babel src --presets=es2015 --plugins=add-module-exports --out-dir lib -s -w",
"lint": "eslint scripts src test",
"test": "echo \"Error: no test specified\" && exit 1"
},
"babel": {
"presets": [
[
"es2015",
{
"loose": true
}
]
],
"plugins": [
"add-module-exports"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/JordanMachado/device-orientation-control.git"
},
"keywords": [
"webgl",
"gl-matrix",
"device",
"orientation",
"control",
"gl"
],
"bugs": {
"url": "https://github.com/JordanMachado/device-orientation-control/issues"
},
"homepage": "https://github.com/JordanMachado/device-orientation-control#readme"
}