-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
86 lines (86 loc) · 1.96 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
{
"name": "sweden-national-id",
"version": "0.0.0",
"description": "Validation for swedish national id numbers.",
"main": "./dist/index.js",
"homepage": "https://github.com/MartinAskestad/sweden-national-id",
"scripts": {
"test": "ava",
"prebuild": "ava",
"build": "tsc",
"semantic-release": "semantic-release",
"typedoc": "typedoc",
"lint": "eslint --ext .ts ./src",
"prepare": "husky install"
},
"keywords": [
"validate",
"swedish",
"personnummer",
"ssn",
"social",
"security",
"number",
"social security number",
"national id number"
],
"author": {
"name": "Martin Askestad",
"email": "m@rtin.nu"
},
"license": "MIT",
"devDependencies": {
"@commitlint/cli": "^16.2.3",
"@commitlint/config-conventional": "^16.2.1",
"@types/node": "^12.0.10",
"@typescript-eslint/eslint-plugin": "^5.15.0",
"@typescript-eslint/parser": "^5.15.0",
"ava": "^4.1.0",
"commitizen": "^4.2.4",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.5.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.2.0",
"husky": "^7.0.4",
"lint-staged": "^12.3.7",
"prettier": "^2.6.0",
"semantic-release": "^19.0.2",
"ts-node": "^10.7.0",
"typedoc": "^0.22.13",
"typescript": "^4.6.2"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint --edit"
}
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"lint-staged": {
"*.{ts}": [
"eslint --fix --ext .ts ./src",
"git add"
]
},
"config": {
"commitizen": {
"path": "./node-modules/cz-conventional-changelog"
}
},
"ava": {
"snapshotDir": "test-snapshots",
"extensions": [
"ts"
],
"require": [
"ts-node/register"
]
}
}