-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
54 lines (54 loc) · 1.59 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
{
"name": "@fossbarrow/swedish-ssn-validator",
"version": "1.0.0",
"description": "Swedish Social Security Number validator and masker",
"keywords": [
"IRS",
"SSN",
"TIN",
"SE",
"SWE",
"personnummer",
"identification",
"masker",
"validator"
],
"homepage": "https://github.com/fossbarrow/swedish-ssn-validator",
"bugs": {
"url": "https://github.com/fossbarrow/swedish-ssn-validator/issues"
},
"publishConfig": {
"registry": "https://npm.pkg.github.com/"
},
"license": "MIT",
"author": "fossbarrow",
"main": "src/index.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/fossbarrow/swedish-ssn-validator.git"
},
"scripts": {
"changelog": "github_changelog_generator --no-issues --header-label='# Changelog' --future-release=v$npm_config_future_release && sed -i '' -e :a -e '$d;N;2,4ba' -e 'P;D' CHANGELOG.md",
"lint": "eslint src",
"version": "npm run changelog --future-release=$npm_package_version && git add -A CHANGELOG.md dist"
},
"devDependencies": {
"@babel/core": "^7.11.1",
"@babel/eslint-parser": "^7.11.3",
"@babel/eslint-plugin": "^7.11.3",
"@types/node": "^14.0.27",
"babel-eslint": "^6.0.2",
"eslint": ">=4.18.2",
"eslint-plugin-sort-class-members": "^1.8.0",
"pre-commit": "^1.1.2"
},
"engines": {
"node": ">= 8.16.2"
},
"pre-commit": [
"lint"
],
"dependencies": {
"chai": "^4.3.4"
}
}