forked from iTowns/itowns
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
118 lines (118 loc) · 4.46 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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
{
"name": "itowns",
"version": "2.42.0",
"description": "A JS/WebGL framework for 3D geospatial data visualization",
"main": "lib/Main.js",
"exports": {
".": "./lib/Main.js",
"./widgets": "./lib/Utils/gui/Main.js"
},
"scripts": {
"lint": "eslint \"src/**/*.js\" \"test/**/*.js\" \"examples/**/*.js\" \"docs/*.js\"",
"doc": "jsdoc --readme docs/HOMEPAGE.md -c docs/config.json",
"doclint": "npm run doc -- -t templates/silent",
"test": "npm run lint -- --max-warnings=0 && npm run build && npm run test-with-coverage && npm run test-functional",
"test-dev": "npm run lint -- --max-warnings=0 && npm run build-dev && npm run test-with-coverage && npm run test-functional",
"test-unit": "npm run base-test-unit test/unit",
"test-functional": "mocha -t 100000 --require test/hooks_functional.js --recursive test/functional",
"test-with-coverage": "nyc -n src -r html cross-env npm run test-unit",
"test-with-coverage_lcov": "nyc -n src --reporter=lcov cross-env npm run test-unit",
"base-test-unit": "cross-env BABEL_DISABLE_CACHE=1 mocha --require @babel/register --file test/unit/bootstrap.js",
"build": "cross-env NODE_ENV=production webpack",
"build-dev": "cross-env NODE_ENV=development webpack",
"transpile": "cross-env BABEL_DISABLE_CACHE=1 babel src --out-dir lib",
"start": "cross-env NODE_ENV=development webpack serve",
"start-https": "cross-env NODE_ENV=development webpack serve --https",
"debug": "cross-env noInline=true npm start",
"prepublishOnly": "npm run build && npm run transpile",
"prepare": "cross-env NO_UPDATE_NOTIFIER=true node ./config/prepare.mjs && node ./config/replace.config.mjs",
"watch": "cross-env BABEL_DISABLE_CACHE=1 babel --watch src --out-dir lib",
"changelog": "conventional-changelog -n ./config/conventionalChangelog/config.js -i changelog.md -s",
"bump": "if [ -z $npm_config_level ]; then grunt bump:minor; else grunt bump:$npm_config_level; fi && npm run changelog && npm install && git add -A && git commit --amend --no-edit",
"publish-next": "npm version prerelease --preid next && npm publish --access public --tag=next --provenance",
"publish-latest": "npm publish --access public --tag=latest --provenance"
},
"nyc": {
"exclude": [
"**/*ThreeExtended",
"**/*src/Utils/placeObjectOnGround.js",
"**/*src/Parser/deprecated/LegacyGLTFLoader.js"
]
},
"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": {
"@mapbox/mapbox-gl-style-spec": "^13.28.0",
"@mapbox/vector-tile": "^1.3.1",
"@tmcw/togeojson": "^5.8.1",
"@tweenjs/tween.js": "^18.6.4",
"copc": "^0.0.5",
"earcut": "^2.2.4",
"js-priority-queue": "^0.1.5",
"pbf": "^3.2.1",
"shpjs": "^4.0.4"
},
"peerDependencies": {
"proj4": "^2.9.2",
"three": "^0.159.0"
},
"devDependencies": {
"@babel/cli": "^7.22.5",
"@babel/plugin-transform-runtime": "^7.22.5",
"@babel/preset-env": "^7.22.5",
"@babel/register": "^7.22.5",
"@types/three": "^0.159.0",
"@xmldom/xmldom": "^0.8.10",
"babel-inline-import-loader": "^1.0.1",
"babel-loader": "^9.1.3",
"babel-plugin-inline-import": "^3.0.0",
"babel-plugin-minify-dead-code-elimination": "^0.5.2",
"babel-plugin-minify-replace": "^0.5.0",
"babel-plugin-module-resolver": "^5.0.0",
"chalk": "^5.3.0",
"chart.js": "^4.4.1",
"compare-func": "^2.0.0",
"conventional-changelog-cli": "^4.1.0",
"copyfiles": "^2.4.1",
"core-js": "^3.34.0",
"cross-env": "^7.0.3",
"eslint": "^8.55.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-import-resolver-webpack": "^0.13.8",
"eslint-plugin-import": "^2.29.0",
"eslint-webpack-plugin": "^4.0.1",
"github-url-from-git": "^1.5.0",
"grunt": "^1.6.1",
"grunt-bump": "^0.8.0",
"https-proxy-agent": "^7.0.2",
"jsdoc": "^4.0.2",
"marked": "^11.0.1",
"mocha": "^10.2.0",
"node-fetch": "^2.7.0",
"nyc": "^15.1.0",
"proj4": "^2.9.2",
"puppeteer": "^21.6.0",
"q": "^1.5.1",
"replace-in-file": "^7.0.2",
"sinon": "^17.0.1",
"three": "^0.159.0",
"typescript": "^5.3.3",
"webpack": "^5.89.0",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^4.15.1"
}
}