-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
96 lines (96 loc) · 2.19 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
{
"name": "capitalise-post-town",
"version": "3.0.1",
"description": "Capitalise UK post towns correctly",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"author": {
"name": "Ideal Postcodes",
"email": "[email protected]",
"url": "https://ideal-postcodes.co.uk"
},
"bugs": {
"url": "https://github.com/ideal-postcodes/capitalise-post-town/issues",
"email": "[email protected]"
},
"homepage": "https://github.com/ideal-postcodes/capitalise-post-town",
"repository": {
"type": "git",
"url": "https://github.com/ideal-postcodes/capitalise-post-town.git"
},
"files": [
"dist",
"example.js"
],
"scripts": {
"semantic-release": "semantic-release",
"test": "npm run lint && NODE_ENV=test nyc mocha",
"lint": "eslint lib/**/*.ts",
"build": "tsc",
"coverage": "nyc report --reporter=text-lcov > coverage.lcov && codecov",
"prepare": "npm run build"
},
"mocha": {
"spec": "test/*.ts",
"exit": true,
"fullTrace": true,
"require": [
"ts-node/register",
"source-map-support/register"
]
},
"nyc": {
"include": [
"lib/**/*.ts"
],
"exclude": [
"dist/*"
],
"extension": [
".ts",
".tsx"
],
"require": [
"ts-node/register"
],
"reporter": [
"text-summary",
"html"
],
"sourceMap": true,
"instrument": true,
"all": true
},
"keywords": [
"capitalise",
"Post",
"Town",
"UK",
"Addressing"
],
"license": "MIT",
"runkitExampleFilename": "example.js",
"dependencies": {},
"release": {
"extends": "@cablanchard/semantic-release/dist/npm"
},
"devDependencies": {
"@cablanchard/eslint-config": "~2.0.1",
"@cablanchard/semantic-release": "~1.3.1",
"@cablanchard/tsconfig": "2.0.0",
"@types/chai": "~4.3.0",
"@types/mocha": "~8.2.0",
"@types/node": "~17.0.5",
"chai": "~4.3.0",
"codecov": "~3.8.0",
"eslint": "~7.32.0",
"mocha": "~9.1.1",
"nyc": "~15.1.0",
"prettier": "~2.6.0",
"semantic-release": "~17.4.0",
"source-map-support": "~0.5.6",
"ts-node": "~10.4.0",
"tslint": "~6.1.2",
"typescript": "~4.6.3"
}
}