forked from VCityTeam/UD-Viz
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
65 lines (65 loc) · 1.92 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
{
"name": "UD-Viz-Core",
"version": "0.0.1",
"description": "An iTowns based set of overlay display modules for City exploration",
"main": "src/Main.js",
"scripts": {
"lint": "eslint \"src/**/*.js\" \"Main.js\"",
"doc": "jsdoc Main.js",
"doclint": "npm run doc -- -t templates/silent",
"test": "npm run lint",
"build": "webpack",
"transpile": "cross-env BABEL_DISABLE_CACHE=1 babel src --out-dir lib",
"start": "cross-env NODE_ENV=development webpack-dev-server -d --inline --hot",
"//": "\"prepublish\": \"npm run build && npm run transpile\""
},
"files": [
"Tools",
"Modules"
],
"repository": {
"type": "git",
"url": "git+https://github.com/MEPP-team/UD-Viz.git"
},
"license": "(LGPL-2.1)",
"bugs": {
"url": "https://github.com/MEPP-team/UD-Viz/issues"
},
"homepage": "https://github.com/MEPP-team/UD-Viz/",
"dependencies": {
"babel-runtime": "^6.20.0",
"es6-promise": "^4.0.5",
"itowns": "2.23.0",
"moment": "^2.19.0",
"proj4": "^2.6.2",
"three": "^0.117.1"
},
"devDependencies": {
"babel-cli": "^6.22.2",
"babel-core": "^6.22.1",
"babel-loader": "^7.0.0",
"babel-plugin-minify-dead-code-elimination": "^0.2.0",
"babel-plugin-transform-runtime": "^6.22.0",
"babel-plugin-webpack-loaders": "^0.9.0",
"babel-preset-env": "^1.6.0",
"chart.js": "^2.4.0",
"cross-env": "^3.1.4",
"css-loader": "^3.2.0",
"eslint": "^3.14.0",
"eslint-config-airbnb-base": "^11.3.0",
"eslint-import-resolver-webpack": "^0.8.1",
"eslint-loader": "^1.7.1",
"eslint-plugin-import": "^2.2.0",
"file-loader": "^1.1.11",
"imports-loader": "^0.7.1",
"jsdoc": "^3.4.3",
"mocha": "^6.2.0",
"node-fetch": "^1.7.0",
"raw-loader": "^0.5.1",
"require-from-string": "^1.2.1",
"style-loader": "^0.20.3",
"url-loader": "^1.0.1",
"webpack": "^3.0.0",
"webpack-dev-server": "^2.4.5"
}
}