-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
53 lines (53 loc) · 1.37 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
{
"name": "south-africa-national-id-validation",
"version": "3.1.1",
"description": "Checks the South Africa National ID input is valid and allows you to return specific error messages",
"main": "index.min.js",
"scripts": {
"build": "cross-env BABEL_ENV=production babel index.js -o index.min.js",
"test": "jest",
"coverage": "cat ./coverage/lcov.info | coveralls"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ClearScore/south-africa-national-id-validation.git"
},
"files": [
"index.min.js",
"index.js"
],
"keywords": [
"south",
"africa",
"national",
"id",
"input",
"validation",
"error",
"clearscore",
"clear",
"score",
"za"
],
"author": "Callum Silcock <github@csi.lk> (http://www.clearscore.com)",
"license": "MIT",
"bugs": {
"url": "https://github.com/ClearScore/south-africa-national-id-validation/issues"
},
"homepage": "https://github.com/ClearScore/south-africa-national-id-validation#readme",
"resolutions": {
"y18n": "^3.2.2"
},
"devDependencies": {
"@babel/cli": "^7.1.0",
"@babel/core": "^7.1.0",
"@babel/preset-env": "^7.1.0",
"babel-core": "^7.0.0-bridge.0",
"babel-jest": "^23.6.0",
"babel-preset-minify": "^0.4.3",
"coveralls": "^3.0.2",
"cross-env": "^5.2.0",
"jest": "^23.6.0",
"prettier": "^1.18.2"
}
}