-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.33 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.33 KB
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
{
"name": "ceium-aspect",
"version": "0.0.1",
"description": "在Cesium中计算地形坡向",
"type": "module",
"main": "dist/index.main.js",
"module": "dist/index.esm.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "rm -rf dist && rollup -c",
"build:doc": "typedoc src/index.ts --out ./docs ",
"test": "npx vitest",
"test:coverage": "npx vitest run --coverage",
"test:report": "npx vitest --reporter=html"
},
"keywords": [
"cesium",
"spatial",
"geoanalysis",
"aspect"
],
"publishConfig": {
"registry": "https://registry.npmjs.org",
"access": "public"
},
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "git://github.com/nickw233/cesium-aspect.git"
},
"author": "nickw233",
"license": "BSD 2-Clause",
"dependencies": {
"@turf/turf": "^7.2.0",
"cesium": "^1.101.0"
},
"devDependencies": {
"@rollup/plugin-node-resolve": "^16.0.1",
"@types/jest": "^29.5.14",
"@vitest/coverage-istanbul": "^3.0.9",
"@vitest/ui": "3.0.9",
"jsdom": "^26.0.0",
"rollup": "^4.36.0",
"rollup-obfuscator": "^4.1.1",
"rollup-plugin-dts": "^6.2.1",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-typescript2": "^0.36.0",
"typedoc": "^0.28.1",
"typedoc-plugin-markdown": "^4.5.2",
"vitest": "^3.0.9"
}
}