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
109 lines (109 loc) · 2.66 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
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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
{
"name": "@ideal-postcodes/api-fixtures",
"description": "api-fixtures",
"author": {
"name": "Ideal Postcodes",
"email": "support@ideal-postcodes.co.uk",
"url": "https://ideal-postcodes.co.uk"
},
"bugs": {
"url": "https://github.com/ideal-postcodes/api-fixtures/issues",
"email": "support@ideal-postcodes.co.uk"
},
"homepage": "https://github.com/ideal-postcodes/api-fixtures",
"repository": {
"type": "git",
"url": "https://github.com/ideal-postcodes/api-fixtures.git"
},
"version": "1.3.0",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"semantic-release": "semantic-release --no-ci",
"test": "npm run lint && NODE_ENV=test nyc mocha",
"lint": "tslint -c tslint.json -p tsconfig.json lib/**/*.ts",
"build": "tsc",
"coverage": "nyc report --reporter=text-lcov > coverage.lcov && codecov",
"generate": "node_modules/.bin/ts-node bin/generate.ts && npm run test && npm run docs",
"docs": "typedoc",
"prepublishOnly": "npm run test && npm run lint && npm run build"
},
"files": [
"dist",
"example.js"
],
"prettier": {
"trailingComma": "es5"
},
"nyc": {
"include": [
"lib/**/*.ts",
"generate/**/*.ts"
],
"exclude": [
"dist/*",
"**/*.d.ts",
"generate/index.ts"
],
"extension": [
".ts",
".tsx"
],
"require": [
"ts-node/register"
],
"reporter": [
"text-summary",
"html"
],
"all": true
},
"mocha": {
"extension": [
"ts"
],
"exit": true,
"fullTrace": true,
"require": [
"ts-node/register",
"source-map-support/register"
]
},
"engines": {
"node": ">=10.0"
},
"license": "MIT",
"devDependencies": {
"@cablanchard/semantic-release": "~1.3.0",
"@cablanchard/tsconfig": "2.0.0",
"@cablanchard/tslint": "0.0.1",
"@ideal-postcodes/api-typings": "~2.0.0",
"@ideal-postcodes/doc-assets": "~1.0.6",
"@types/chai": "~4.2.0",
"@types/dotenv": "~8.2.0",
"@types/lodash": "~4.14.120",
"@types/mocha": "~8.2.0",
"@types/nock": "~11.1.0",
"@types/node": "~14.14.0",
"@types/node-fetch": "~2.5.0",
"@types/prettier": "~2.2.0",
"chai": "~4.3.4",
"codecov": "~3.8.0",
"dotenv": "~8.2.0",
"lodash": "~4.17.11",
"mocha": "~8.3.0",
"nock": "13.0.11",
"node-fetch": "~2.6.0",
"nyc": "~15.1.0",
"prettier": "~2.2.0",
"semantic-release": "~17.4.1",
"source-map-support": "~0.5.10",
"ts-node": "~9.1.0",
"tslint": "~6.1.0",
"typedoc": "^0.20.35",
"typescript": "~4.2.4"
},
"release": {
"extends": "@cablanchard/semantic-release/dist/npm"
}
}