-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.28 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.28 KB
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
{
"name": "thaiid",
"version": "0.0.0-development",
"description": "Fastest Thai Nationality ID verify and random",
"main": "src/index.js",
"typings": "src/index.js",
"scripts": {
"jest": "jest",
"jest.watch": "npm run jest -- --watch",
"coverage.check": "jest --coverage",
"standard": "standard",
"validate": "npm run standard && npm run coverage.check"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jojoee/thaiid.git"
},
"keywords": [
"thai",
"id",
"thai id",
"nationality",
"nationality id",
"validation",
"validator",
"personal id",
"PID",
"random",
"card",
"generate",
"verify"
],
"author": "Nathachai Thongniran <inid3a@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/jojoee/thaiid/issues"
},
"homepage": "https://github.com/jojoee/thaiid#readme",
"dependencies": {},
"devDependencies": {
"jest": "^26.6.1",
"standard": "^15.0.0"
},
"jest": {
"verbose": true,
"testMatch": [
"**/*.test.js"
],
"coverageThreshold": {
"global": {
"branches": 70,
"functions": 70,
"lines": 70,
"statements": 70
}
}
},
"standard": {
"verbose": true,
"env": "jest"
}
}