-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
64 lines (64 loc) · 1.98 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
{
"name": "personnummer.js",
"version": "3.0.0",
"description": "JavaScript script to validate and parse Swedish personal identity numbers and corporate identity numbers. Written in TypeScript and includes types.",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"directories": {
"test": "test",
"lib": "lib"
},
"scripts": {
"lint": "tsc --noEmit && node_modules/eslint/bin/eslint.js 'src/*/**/*.ts' --fix && echo '✔️ nice'",
"prebuild": "npm run lint -s",
"build": "tsc",
"test": "mocha -r ts-node/register test/**/*.test.ts",
"babel-build": "babel lib -d dontpush",
"prepare": "npm run test && npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kelszo/personnummer.js.git"
},
"keywords": [
"personnummer",
"validation",
"swedish",
"parsing",
"personal",
"number",
"identity",
"social security number",
"organisationsnummer"
],
"author": {
"name": "Kelvin Szolnoky",
"email": "me@kelszo.com"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/kelszo/personnummer.js/issues"
},
"homepage": "https://github.com/kelszo/personnummer.js/blob/master/README.md",
"devDependencies": {
"@babel/cli": "^7.18.10",
"@babel/core": "^7.18.10",
"@types/mocha": "^9.1.1",
"@typescript-eslint/eslint-plugin": "^5.33.0",
"@typescript-eslint/parser": "^5.33.0",
"@types/assert": "^1.5.6",
"eslint": "^8.21.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-security": "^1.5.0",
"mocha": "^10.0.0",
"prettier": "^2.7.1",
"ts-node": "^10.9.1",
"tslint-eslint-rules": "^5.4.0",
"typescript": "^4.7.4"
},
"files": [
"lib"
]
}