forked from melwynfurtado/postcode-validator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
68 lines (68 loc) · 1.85 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
{
"name": "postcode-validator",
"version": "3.8.0",
"description": "Validate postcodes based on country",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/melwynfurtado/postcode-validator.git"
},
"main": "./lib/cjs/main.js",
"module": "./lib/esm/main.js",
"scripts": {
"build": "tsc -p tsconfig.json && tsc -p tsconfig-cjs.json",
"commit": "git-cz",
"format": "prettier --write \"src/**/*.ts\"",
"lint": "tslint -p tsconfig.json",
"prepare": "npm run build && husky install",
"test": "jest --config jestconfig.json",
"semantic-release": "semantic-release"
},
"files": [
"lib/"
],
"keywords": [
"postcode",
"validation"
],
"author": {
"name": "Melwyn Furtado",
"email": "[email protected]"
},
"gitHead": "d11ad2bf5ae28bc47e2e14a9149b1049206941ca",
"bugs": {
"url": "https://github.com/melwynfurtado/postcode-validator/issues"
},
"homepage": "https://github.com/melwynfurtado/postcode-validator",
"maintainers": [
{
"name": "Melwyn Furtado",
"email": "[email protected]"
}
],
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"devDependencies": {
"@commitlint/cli": "^12.1.4",
"@commitlint/config-conventional": "^12.1.4",
"@semantic-release/commit-analyzer": "^9.0.2",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^8.0.2",
"@semantic-release/npm": "^9.0.1",
"@semantic-release/release-notes-generator": "^10.0.3",
"@types/jest": "^27.4.1",
"commitizen": "^4.2.4",
"cz-conventional-changelog": "^3.0.1",
"husky": "^6.0.0",
"jest": "^27.5.1",
"prettier": "^2.6.0",
"semantic-release": "^19.0.2",
"ts-jest": "^27.1.3",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.18.0",
"typescript": "^4.6.2"
}
}