-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.41 KB
/
Copy pathpackage.json
File metadata and controls
52 lines (52 loc) · 1.41 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
{
"name": "ukpd",
"version": "7.0.1",
"description": "a node module to provide an interface to the UK police data API",
"main": "./build/index.js",
"types": "./build/index.d.ts",
"files": [
"build/"
],
"engines": {
"node": "^20 || ^22",
"npm": "^10"
},
"scripts": {
"watch": "tsc --project tsconfig.json -w",
"prebuild": "rm -rf build/",
"build": "tsc --project tsconfig.json",
"unit": "jest --config jest.config.js",
"lint": "eslint src",
"examples": "sh ci/scripts/run-all-examples.sh",
"pretest": "npm run build",
"test": "npm run unit && npm run lint && npm run examples",
"preversion": "npm test && npm run build",
"postversion": "git push --follow-tags && npm publish"
},
"repository": {
"url": "git+https://github.com/AlexChesters/ukpd.git",
"type": "git"
},
"author": "Alex Chesters",
"license": "MIT",
"bugs": {
"url": "https://github.com/AlexChesters/ukpd/issues"
},
"homepage": "https://github.com/AlexChesters/ukpd#readme",
"devDependencies": {
"@eslint/js": "^9.32.0",
"@types/chai": "^4.3.6",
"@types/jest": "^29.5.5",
"@types/ramda": "^0.29.5",
"chai": "^4.3.10",
"eslint": "^9.32.0",
"globals": "^16.3.0",
"jest": "^29.7.0",
"jiti": "^2.5.1",
"ramda": "^0.29.0",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.2",
"typescript": "^5.2.2",
"typescript-eslint": "^8.39.0"
}
}