-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
72 lines (72 loc) · 2.42 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
{
"name": "@metsci/gleam",
"author": "Metron, Inc.",
"license": "BSD 3-Clause",
"repository": {
"type": "git",
"url": "https://github.com/metsci/gleam.git"
},
"private": true,
"workspaces": [
"packages/util",
"packages/core",
"packages/timeline",
"packages/geojson",
"packages/mvt",
"examples/*"
],
"scripts": {
"clean": "run-s \"clean:*\"",
"clean:workspaces": "npm run clean --if-present -ws",
"clean:toplevel": "shx rm -rf ./build",
"cleanDeps": "run-s \"cleanDeps:*\"",
"cleanDeps:workspaces": "npm run cleanDeps --if-present -ws",
"cleanDeps:toplevel": "shx rm -rf ./node_modules",
"cleanFull": "run-s clean cleanDeps",
"build": "run-s build:resources build:compile build:bundle build:static",
"build:resources": "npm run build:resources --if-present -ws",
"build:compile": "tsc --build --verbose",
"build:bundle": "npm run build:bundle --if-present -ws",
"build:static": "npm run build:static --if-present -ws",
"test": "run-s build test:run",
"test:run": "npm run test:run --if-present -ws",
"serve-examples": "node ./tools/serveExamples.mjs localhost 8080",
"serve-examples-to-lan": "node ./tools/serveExamples.mjs 0.0.0.0 8080",
"updateHeaders": "npm run updateHeaders --if-present -ws",
"concretizeDepVersions": "npm run concretizeDepVersions --if-present -ws"
},
"devDependencies": {
"@mapbox/vector-tile": "^1.3.1",
"@metsci/rollup-plugin-asset": "^1.0.1",
"@metsci/rollup-plugin-remove-comments": "^1.0.1",
"@rollup/plugin-commonjs": "^24.0.1",
"@rollup/plugin-node-resolve": "^15.0.1",
"@rollup/plugin-replace": "^5.0.2",
"@types/earcut": "^2.1.1",
"@types/geojson": "^7946.0.10",
"@types/jasmine": "^4.3.1",
"@types/mapbox__vector-tile": "^1.3.0",
"@types/pbf": "^3.0.2",
"@types/dompurify": "^3.0.0",
"cpx2": "^4.2.2",
"dompurify": "^3.0.1",
"earcut": "^2.2.4",
"express": "^4.18.2",
"immutable": "^4.3.0",
"jasmine-core": "^4.6.0",
"karma": "^6.4.1",
"karma-chrome-launcher": "^3.1.1",
"karma-jasmine": "^5.1.0",
"karma-spec-reporter": "^0.0.36",
"libtess": "^1.2.2",
"npm-run-all": "^4.1.5",
"pbf": "^3.2.1",
"quickselect": "^2.0.0",
"resolve-package-path": "^4.0.3",
"rollup": "^2.79.1",
"rollup-plugin-sourcemaps": "^0.6.3",
"rollup-plugin-string": "^3.0.0",
"shx": "^0.3.4",
"typescript": "^5.0.2"
}
}