This repository has been archived by the owner on Mar 2, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.64 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
{
"name": "@ideal-postcodes/api-typings",
"description": "Typings and other useful javascript abstractions for interacting with the Ideal-Postcodes.co.uk API",
"author": {
"name": "Ideal Postcodes",
"email": "[email protected]",
"url": "https://ideal-postcodes.co.uk"
},
"bugs": {
"url": "https://github.com/ideal-postcodes/api-typings/issues",
"email": "[email protected]"
},
"homepage": "https://github.com/ideal-postcodes/api-typings",
"repository": {
"type": "git",
"url": "https://github.com/ideal-postcodes/api-typings.git"
},
"version": "2.1.0",
"types": "./index.d.ts",
"scripts": {
"semantic-release": "node_modules/.bin/semantic-release --no-ci",
"test": "npm run lint && NODE_ENV=test node_modules/.bin/mocha",
"lint": "node_modules/.bin/tslint -c tslint.json -p tsconfig.json lib/**/*.ts",
"build": "npm run test && node_modules/.bin/tsc",
"docs": "typedoc",
"prepare": "npm run build"
},
"engines": {
"node": ">=12.0"
},
"mocha": {
"spec": "tests/*.ts",
"exit": true,
"fullTrace": true,
"require": [
"ts-node/register"
]
},
"prettier": {
"trailingComma": "es5"
},
"license": "MIT",
"devDependencies": {
"@cablanchard/semantic-release": "~1.3.0",
"@ideal-postcodes/api-fixtures": "~1.3.0",
"@ideal-postcodes/doc-assets": "~1.0.6",
"@types/mocha": "~8.2.0",
"mocha": "~8.3.0",
"semantic-release": "~17.4.1",
"ts-node": "~9.1.0",
"tslint": "~6.1.0",
"typedoc": "~0.20.30",
"typescript": "~4.2.4"
},
"release": {
"extends": "@cablanchard/semantic-release/dist/npm"
}
}