-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.01 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": "first-person-controls",
"version": "1.0.1",
"description": "First person controls for Three.js",
"author": "Vivo Xu <[email protected]",
"license": "MIT",
"main": "dist/first-person-controls.min.js",
"keywords": [
"three",
"fps",
"controls",
"es6"
],
"engines": {
"node": "6.0.0"
},
"scripts": {
"start": "NODE_ENV=dev webpack --progress --watch",
"build": "NODE_ENV=prod webpack --progress"
},
"homepage": "https://github.com/hivivo/first-person-controls",
"repository": {
"type": "git",
"url": "https://github.com/hivivo/first-person-controls.git"
},
"bugs": {
"url": "https://github.com/hivivo/first-person-controls/issues"
},
"devDependencies": {
"babel-core": "^6.26.0",
"babel-loader": "^7.1.2",
"babel-preset-env": "^1.6.1",
"clean-webpack-plugin": "^0.1.18",
"eslint": "^4.17.0",
"eslint-loader": "^1.9.0",
"webpack": "^3.10.0"
},
"peerDependencies": {
"three": "^0.89.0"
},
"dependencies": {}
}