forked from evelynpaiz/histovis
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.12 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": "histovis",
"version": "0.1.1",
"description": "threejs + itowns: historical image visualization and interaction",
"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": "epaizreyes/histovis",
"bugs": "https://github.com/epaizreyes/histovis/issues",
"author": "Evelyn Paiz",
"license": "(CECILL-B OR MIT)",
"devDependencies": {
"gh-pages-deploy": "^0.5.1",
"webpack": "^4.44.2",
"webpack-cli": "^3.3.12",
"webpack-dev-server": "^3.11.0"
},
"dependencies": {
"three": "^0.116.1",
"numeric": "^1.2.6",
"photogrammetric-camera": "file:modules/photogrammetric-camera",
"itowns": "file:modules/itowns",
"pixi": "file:modules/pixi"
},
"directories": {
"example": "examples"
},
"files": [
"src",
"examples"
]
}