-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.15 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.15 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
{
"name": "@rr0/place",
"type": "module",
"author": "Jérôme Beau <rr0@rr0.org> (https://rr0.org)",
"version": "0.5.3",
"description": "Place representation API",
"exports": "./dist/index.js",
"types": "./dist/index.d.ts",
"engines": {
"node": ">=20"
},
"license": "MIT",
"homepage": "https://github.com/RR0/place#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/RR0/place.git"
},
"scripts": {
"prebuild": "npm install",
"build": "rm -Rf dist && tsc --project tsconfig.prod.json",
"prepublishOnly": "npm run build",
"test": "testscript",
"test-one": "rm -Rf out && tsx src/time/datasource/essex-police/EssexPoliceDatasource.test.ts",
"test-ci": "rm -Rf out && testscript"
},
"dependencies": {
"@googlemaps/google-maps-services-js": "^3.4.0",
"@rr0/common": "^1.1.3",
"@rr0/lang": "^0.1.12",
"@rr0/data": "^0.3.21"
},
"devDependencies": {
"typescript": "5.7.3",
"@types/node": "^22.7.4",
"tsx": "4.19.2",
"@javarome/testscript": "^0.13.1"
},
"keywords": [
"place",
"HTML",
"rr0"
],
"publishConfig": {
"access": "public"
}
}