-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.35 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": "polish-utils",
"description": "Lightweight library for extracting data and validating polish identification numbers such as PESEL or NIP",
"version": "1.1.3",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"types": "dist/types/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/bartekczyz/polish-utils.git"
},
"author": "Bartłomiej Czyż <[email protected]>",
"keywords": [
"polish utils",
"pesel",
"pesel validation",
"nip validation"
],
"license": "MIT",
"private": false,
"scripts": {
"build": "rimraf dist && rollup --config rollup.config.js",
"prettier": "prettier --check src/**/*.ts",
"lint": "yarn eslint src __tests__ && yarn prettier",
"test": "jest",
"test:watch": "jest --watch"
},
"devDependencies": {
"@bartekczyz/eslint-plugin": "^1.0.1",
"@types/jest": "^27.0.3",
"@wessberg/rollup-plugin-ts": "^1.3.14",
"husky": "^7.0.4",
"jest": "^27.3.1",
"lint-staged": "^12.1.2",
"np": "^7.6.0",
"rimraf": "^3.0.2",
"rollup": "^2.60.1",
"rollup-plugin-terser": "^7.0.2",
"ts-jest": "^27.0.7",
"tslib": "^2.3.1",
"typescript": "^4.5.2"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,ts}": [
"eslint --fix",
"prettier --write"
]
}
}