-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 870 Bytes
/
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
{
"name": "idcard-util",
"version": "1.0.1",
"description": "An utility class for Chinese citizenship certificate",
"main": "index.js",
"repository": {
"type": "git",
"url": "git@github.com:un-defined/idcard-util.git"
},
"author": "un-defined <659168590@qq.com>",
"license": "MIT",
"keywords": [
"idcard",
"util"
],
"scripts": {
"test": "nyc ava -v",
"report": "nyc report --reporter=html",
"coverage": "nyc report --reporter=text-lcov | coveralls"
},
"ava": {
"files": [
"test/**/*.test.js"
],
"concurrency": 25,
"serial": true,
"failFast": false
},
"bugs": {
"url": "https://github.com/un-defined/idcard-util/issues"
},
"homepage": "https://github.com/un-defined/idcard-util",
"devDependencies": {
"ava": "^0.25.0",
"coveralls": "^3.0.0",
"nyc": "^11.6.0"
}
}