forked from iTowns/itowns
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
116 lines (116 loc) · 4.51 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
{
"private": true,
"version": "2.44.2",
"description": "A JS/WebGL framework for 3D geospatial data visualization",
"type": "module",
"workspaces": [
"packages/Geographic",
"packages/Main",
"packages/Debug",
"packages/Widget"
],
"scripts": {
"lint": "npm run lint --workspaces && eslint \"examples/**/*.js\" \"docs/*.js\"",
"doc": "jsdoc --readme docs/HOMEPAGE.md -c docs/config.json",
"doclint": "npm run doc -- -t templates/silent",
"test": "npm run transpile && npm run test-with-coverage && npm run build && npm run test-functional",
"test-dev": "npm run test-unit && npm run build-dev && npm run test-functional",
"test-unit": "npm run test-unit --workspaces --if-present",
"test-functional": "npm run build && mocha -t 100000 --require test/hooks_functional.js --recursive test/functional",
"test-with-coverage": "npm run test-with-coverage --workspaces --if-present",
"test-with-coverage_lcov": "npm run test-with-coverage_lcov --workspaces --if-present && c8 report --reporter=lcov",
"build": "npm run transpile && cross-env NODE_ENV=production webpack",
"build-dev": "cross-env NODE_ENV=development webpack",
"transpile": "npm run transpile --workspaces",
"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 && npm run prepare --workspaces --if-present",
"watch": "node ./config/concurrently.mjs watch",
"changelog": "conventional-changelog -n ./config/conventionalChangelog/config.cjs -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 run update-packages && npm install && git add -A && git commit --amend --no-edit",
"publish-next": "npm run publish-next -workspaces --if-present && npm publish --access public --tag=next --workspaces --provenance",
"publish-latest": "npm publish --access public --tag=latest --provenance --workspaces",
"update-packages": "npm run update-package -workspaces --if-present"
},
"c8": {
"exclude": [
"**/test/**",
"**/lib/**",
"**/*ThreeExtended",
"**/*src/Utils/placeObjectOnGround.js",
"**/*src/Parser/deprecated/LegacyGLTFLoader.js",
"**/packages/Widget/",
"**/packages/Debug/"
]
},
"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/",
"devDependencies": {
"@babel/cli": "^7.25.6",
"@babel/core": "^7.25.2",
"@babel/plugin-transform-runtime": "^7.25.4",
"@babel/preset-env": "^7.25.4",
"@babel/preset-typescript": "^7.24.7",
"@babel/register": "^7.24.6",
"@stylistic/eslint-plugin": "^2.8.0",
"@types/proj4": "^2.5.5",
"@types/three": "^0.168.0",
"@typescript-eslint/eslint-plugin": "^8.5.0",
"@typescript-eslint/parser": "^8.5.0",
"@xmldom/xmldom": "^0.9.2",
"babel-inline-import-loader": "^1.0.1",
"babel-loader": "^9.2.1",
"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-extension-resolver": "^1.0.0",
"babel-plugin-module-resolver": "^5.0.2",
"c8": "^10.1.2",
"chalk": "^5.3.0",
"compare-func": "^2.0.0",
"concurrently": "^8.2.2",
"conventional-changelog-cli": "^4.1.0",
"copyfiles": "^2.4.1",
"core-js": "^3.38.1",
"cross-env": "^7.0.3",
"eslint": "^8.55.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-import-resolver-babel-module": "^5.3.2",
"eslint-plugin-import": "^2.30.0",
"eslint-plugin-tsdoc": "^0.3.0",
"eslint-webpack-plugin": "^4.2.0",
"github-url-from-git": "^1.5.0",
"grunt": "^1.6.1",
"grunt-bump": "^0.8.0",
"https-proxy-agent": "^7.0.5",
"jsdoc": "^4.0.3",
"mocha": "^10.7.3",
"proj4": "^2.12.1",
"puppeteer": "^23.3.1",
"q": "^1.5.1",
"replace-in-file": "^8.1.0",
"sinon": "^19.0.2",
"three": "^0.168.0",
"typescript": "^5.6.2",
"webgl-mock": "^0.1.7",
"webpack": "^5.94.0",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^5.1.0"
}
}