-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
42 lines (42 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
34
35
36
37
38
39
40
41
42
{
"name": "photogrammetric-camera",
"version": "0.1.1",
"description": "PhotogrammetricCamera for THREE",
"main": "src/main.js",
"gh-pages-deploy": {
"commit": "deploy",
"post": [
"build",
"clean-source"
],
"noprompt": false
},
"scripts": {
"build": "webpack -p",
"start": "webpack-dev-server -d --inline --hot",
"deploy": "gh-pages-deploy -- 'gh-pages-deploy'",
"clean-source": "rimraf webpack.config.js src package.json package-lock.json"
},
"repository": "mbredif/photogrammetric-camera",
"bugs": "https://github.com/mbredif/photogrammetric-camera/issues",
"author": "Mathieu Brédif",
"license": "(CECILL-B OR MIT)",
"devDependencies": {
"gh-pages-deploy": "git+https://github.com/mbredif/gh-pages-deploy",
"three": "^0.116.1",
"webpack": "^4.1.1",
"webpack-cli": "^2.0.15",
"webpack-dev-server": "^3.1.4"
},
"peerDependencies": {
"three": "^0.116.1"
},
"dependencies": {},
"directories": {
"example": "examples"
},
"files": [
"src",
"examples"
]
}