-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
59 lines (59 loc) · 1.62 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
{
"name": "@geoblocks/edittrack",
"version": "1.3.23",
"description": "Geoblocks edittrack",
"scripts": {
"eslint": "eslint src test demos",
"start": "parcel serve demos/*/*.html",
"build-demo:simple": "parcel build --target demo demos/simple/simple.html",
"build-demo:schm": "parcel build --target demo demos/schm/schm.html",
"build-demo": "npm run build-demo:simple && npm run build-demo:schm",
"prepare": "tsc --pretty",
"test": "mocha --exit",
"typecheck": "tsc --pretty --noEmit",
"lint": "npm run eslint && npm run typecheck",
"doc": "typedoc",
"gh-pages": "rm -rf dist && npm run doc && npm run build-demo && gh-pages -d dist"
},
"license": "BSD-3-Clause",
"repository": "github:geoblocks/edittrack",
"publishConfig": {
"access": "public"
},
"files": [
"src",
"lib",
"CHANGES.md"
],
"type": "module",
"module": "lib/index.js",
"types": "lib/types/index.d.ts",
"targets": {
"demo": {
"context": "browser",
"publicUrl": "./"
}
},
"devDependencies": {
"@geoblocks/elevation-profile": "0.0.21",
"@geoblocks/proj": "0.4.10",
"@geoblocks/sources": "0.3.4",
"@types/chai": "5.0.1",
"@types/mocha": "10.0.10",
"@typescript-eslint/eslint-plugin": "8.18.1",
"@typescript-eslint/parser": "8.18.1",
"chai": "5.1.2",
"eslint": "8.57.1",
"gh-pages": "6.2.0",
"mocha": "11.0.1",
"ol": "10.3.1",
"parcel": "2.13.3",
"ts-node": "10.9.2",
"tsconfig-paths": "4.2.0",
"typedoc": "0.27.5",
"typescript": "5.7.2"
},
"peerDependencies": {
"ol": "^6 || ^7 || ^8 || ^9 || ^10"
}
}