-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 2.76 KB
/
package.json
File metadata and controls
84 lines (84 loc) · 2.76 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
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
{
"name": "churchill-map",
"version": "0.10.4",
"description": "",
"private": true,
"scripts": {
"compileMapJson": "compile_map_json src/data/map.json src/data/map_compiled.json",
"test": "jest",
"test-coverage": "jest --coverage --coverage-reporters text",
"test-ci": "jest --ci --reporters=default --reporters=jest-junit --coverage --coverage-reporters cobertura --coverage-reporters text-summary --collect-coverage-from 'src/ts/**/*.{ts,tsx}'",
"lint": "eslint . --max-warnings 0",
"check": "tsc --noEmit --strict --noFallthroughCasesInSwitch",
"fmt": "prettier --config .prettierrc.json 'src/**/*.(ts|tsx)' --write",
"build": "rollup -c",
"serve-build": "rollup -c && npx serve dist -l 10001",
"watch": "rollup -c rollup.dev.config.js -w",
"doc": "typedoc --out docs --includeVersion src/ts/*",
"gen-code-nav": "npx lsif-tsc -p ."
},
"keywords": [],
"author": "Nathan Varner",
"license": "MIT",
"jest": {
"transform": {
".tsx?": "ts-jest"
},
"testRegex": "/src/test/.*\\.test\\.tsx?$",
"moduleFileExtensions": [
"js",
"ts",
"tsx"
]
},
"devDependencies": {
"@rollup/plugin-commonjs": "^17.1.0",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^11.1.1",
"@rollup/plugin-typescript": "^8.2.0",
"@sourcegraph/lsif-tsc": "^0.6.8",
"@trivago/prettier-plugin-sort-imports": "^2.0.2",
"@types/domhandler": "^2.4.1",
"@types/fontfaceobserver": "^0.0.6",
"@types/jest": "^26.0.23",
"@types/kd-tree-javascript": "^1.0.0",
"@types/leaflet": "^1.7.0",
"@types/point-in-polygon": "^1.0.0",
"@typescript-eslint/eslint-plugin": "^4.25.0",
"@typescript-eslint/parser": "^4.25.0",
"eslint": "^7.27.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-security": "^1.4.0",
"jest": "^27.0.4",
"jest-junit": "^12.2.0",
"prettier": "^2.3.1",
"rollup": "^2.38.4",
"rollup-plugin-copy": "^2.0.1",
"rollup-plugin-progress": "^1.1.2",
"rollup-plugin-serve": "^1.1.0",
"rollup-plugin-styles": "^3.14.1",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-version-injector": "^1.3.3",
"sass": "^1.32.8",
"serve": "^11.3.2",
"ts-jest": "^27.0.3",
"ts-node": "^8.10.2",
"tslib": "^2.1.0",
"typedoc": "^0.20.36",
"typescript": "^4.2.3"
},
"dependencies": {
"@nvarner/fallible-typed-inject": "^4.0.0",
"@nvarner/monads": "^0.5.0",
"@tyriar/fibonacci-heap": "^2.0.9",
"@web/rollup-plugin-html": "^1.7.0",
"fontfaceobserver": "^2.1.0",
"kd-tree-javascript": "^1.0.3",
"leaflet": "^1.7.0",
"leaflet-sidebar-v2": "^3.2.3",
"minisearch": "^3.0.0",
"point-in-polygon": "^1.1.0",
"rbush": "^3.0.1"
}
}