-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
71 lines (71 loc) · 1.62 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
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"name": "gb-util",
"version": "1.0.6",
"description": "GB standard tool library",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"src",
"lib",
"!src/__tests__"
],
"scripts": {
"lint": "eslint src scripts",
"format": "prettier --write src",
"build": "rm -rf lib && tsc",
"test": "jest --coverage",
"coveralls": "coveralls < coverage/lcov.info",
"prepare": "npm run build",
"docs": "typedoc src/index.ts",
"pages": "npm run docs && gh-pages -d docs"
},
"repository": {
"type": "git",
"url": "git+https://github.com/d-band/gb-util.git"
},
"keywords": [
"GB",
"utils",
"library",
"GB 11643",
"GB 11714",
"GB 32100",
"GB/T 2260",
"GB/T 17710",
"GB/T 5795",
"ISO 7064",
"ISBN",
"ID Card",
"Unified Social Credit Identifier",
"Check System",
"Chinese Standards",
"region code",
"area code",
"validator",
"parser"
],
"author": "d-band",
"license": "MIT",
"bugs": {
"url": "https://github.com/d-band/gb-util/issues"
},
"homepage": "https://github.com/d-band/gb-util#readme",
"devDependencies": {
"@types/jest": "^26.0.20",
"@typescript-eslint/eslint-plugin": "^4.16.1",
"@typescript-eslint/parser": "^4.16.1",
"cheerio": "^1.0.0-rc.5",
"coveralls": "^3.1.0",
"eslint": "^7.21.0",
"eslint-config-prettier": "^8.1.0",
"form-data": "^2.3.3",
"gh-pages": "^3.1.0",
"got": "^11.8.2",
"jest": "^26.6.3",
"prettier": "^2.2.1",
"ts-jest": "^26.5.3",
"typedoc": "^0.20.30",
"typescript": "^4.2.2",
"xml2js": "^0.4.23"
}
}