forked from iTowns/itowns
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
81 lines (81 loc) · 2.89 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"name": "itowns",
"version": "2.2.0",
"description": "A JS/WebGL framework for 3D geospatial data visualization",
"main": "lib/Main.js",
"scripts": {
"lint": "eslint \"src/**/*.js\" \"test/**/*.js\" \"examples/**/*.js\"",
"doc": "jsdoc src/Core/View.js src/Core/Prefab/GlobeView.js src/Core/Layer/Layer.js src/Renderer/ColorLayersOrdering.js src/Renderer/ThreeExtended/GlobeControls.js src/Core/Geographic/Coordinates.js src/Core/Scheduler/Providers/GpxUtils.js src/Core/MainLoop.js -t node_modules/docdash --readme JSDOC.md -c jsdoc-config.json",
"doclint": "npm run doc -- -t templates/silent",
"test": "npm run lint && npm run build && npm run test-examples && npm run test-unit",
"test-unit": "cross-env BABEL_DISABLE_CACHE=1 mocha --compilers js:babel-core/register test/*unit_test.js",
"test-examples": "npm run transpile && mocha test/globe_test.js && mocha test/planar_test.js && mocha test/postprocessing_test.js && mocha test/externalscene_test.js",
"build": "webpack -p",
"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": [
"*.md",
"dist",
"lib",
"doc",
"examples"
],
"repository": {
"type": "git",
"url": "git+https://github.com/iTowns/itowns.git"
},
"license": "(CECILL-B OR MIT)",
"bugs": {
"url": "https://github.com/iTowns/itowns/issues"
},
"homepage": "https://itowns.github.io/",
"dependencies": {
"babel-polyfill": "^6.26.0",
"babel-runtime": "^6.20.0",
"earcut": "^2.1.1",
"js-priority-queue": "^0.1.5",
"jszip": "^3.1.3",
"monotone-convex-hull-2d": "^1.0.1",
"text-encoding-utf-8": "^1.0.1",
"togeojson": "^0.16.0",
"url-polyfill": "^1.0.8",
"whatwg-fetch": "^2.0.2"
},
"peerDependencies": {
"proj4": "^2.4.4",
"three": "^0.89.0",
"three.meshline": "^1.0.3"
},
"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-minify-replace": "^0.2.0",
"babel-plugin-transform-runtime": "^6.22.0",
"babel-plugin-webpack-loaders": "^0.9.0",
"babel-preset-es2015": "^6.22.2",
"chart.js": "^2.4.0",
"cross-env": "^3.1.4",
"docdash": "^0.4.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.7.0",
"imports-loader": "^0.7.1",
"jsdoc": "^3.5.5",
"marked": "^0.3.9",
"mocha": "^3.4.2",
"node-fetch": "^1.7.0",
"proj4": "^2.4.4",
"raw-loader": "^0.5.1",
"require-from-string": "^1.2.1",
"three": "^0.89.0",
"three.meshline": "^1.0.3",
"webpack": "^2.6.1",
"webpack-dev-server": "^2.4.5"
}
}