-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.25 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
{
"name": "wsdot-route-utils",
"version": "3.0.0",
"description": "Utilities for WA state route IDs",
"type": "module",
"exports": {
".": "./dist/index.js",
"./*.js": "./dist/*.js"
},
"main": "dist/index.js",
"files": [
"dist"
],
"types": "dist/index.d.ts",
"scripts": {
"prepare": "tsc",
"doc": "typedoc && node ./tools/insert-coverage.mjs",
"clean": "git clean -dfx -e node_modules",
"lint": "eslint .",
"test": "jest --bail",
"test:watch": "jest --watch --bail=1 --onlyChanged"
},
"keywords": [
"WSDOT",
"WA",
"Washington",
"route"
],
"author": "WSDOT",
"license": "Unlicense",
"devDependencies": {
"@types/jest": "^29.4.0",
"@types/node": "^18.13.0",
"@typescript-eslint/eslint-plugin": "^5.52.0",
"eslint": "^8.34.0",
"eslint-plugin-tsdoc": "^0.2.17",
"jsdom": "^21.1.0",
"ts-jest": "^29.0.5",
"typedoc": "^0.23.25",
"typedoc-plugin-coverage": "^2.0.0",
"typescript": "^4.9.5"
},
"repository": {
"type": "git",
"url": "git+https://github.com/WSDOT-GIS/wsdot-route-utils.git"
},
"bugs": {
"url": "https://github.com/WSDOT-GIS/wsdot-route-utils/issues"
},
"homepage": "https://github.com/WSDOT-GIS/wsdot-route-utils#readme"
}