-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.29 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
{
"name": "validators-pl",
"description": "Validators for polish address and ID data",
"version": "1.0.0",
"author": {
"name": "Bartek Polanczyk"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "[email protected]:SzybkiSasza/validators-pl.git"
},
"main": "lib",
"scripts": {
"build": "rm -rf ./lib && babel src -d lib --ignore *.test.js",
"coverage": "jest --coverage",
"codacy": "npm run coverage && cat ./coverage/lcov.info | codacy-coverage && rm -rf ./coverage",
"lint": "eslint --fix src",
"prepublish": "npm run build",
"test": "jest"
},
"engines": {
"node": ">= 4.0.0"
},
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-eslint": "^7.2.3",
"babel-jest": "^20.0.3",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-babili": "^0.1.4",
"babel-preset-env": "^1.5.2",
"eslint": "^4.1.1",
"eslint-config-google": "^0.8.0",
"jest": "^20.0.4"
},
"keywords": [
"validator",
"passport",
"paszport",
"address",
"adres",
"polish",
"dowód",
"id",
"form"
],
"dependencies": {
"babel-runtime": "^6.23.0",
"codacy-coverage": "^2.0.2",
"lodash": "^4.17.4"
},
"jest": {
"testPathIgnorePatterns": [
"node_modules",
"lib"
]
}
}