-
Notifications
You must be signed in to change notification settings - Fork 178
/
package.json
65 lines (65 loc) · 1.54 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
{
"name": "china-location",
"version": "2.1.0",
"description": "Chinese Administrative Division information, 中国行政区划信息",
"main": "dist/ChinaLocation.umd.js",
"module": "dist/ChinaLocation.modern.mjs",
"types": "dist/ChinaLocation.d.ts",
"scripts": {
"reformat": "tsc scripts/reformat.ts --outFile dist/reformat.js && node dist/reformat.js",
"build": "microbundle -i lib/ChinaLocation.ts -f modern,umd",
"test": "jest",
"prepublishOnly": "npm run build"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"**/*.{js}": [
"prettier --write",
"git add"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/JasonBoy/china-location.git"
},
"keywords": [
"china",
"location",
"china address",
"province",
"city",
"district",
"data_location",
"chinese administrative division",
"中国行政区划信息"
],
"author": "Jason Jiang <jasonlikenfs@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/JasonBoy/china-location/issues"
},
"homepage": "https://github.com/JasonBoy/china-location#readme",
"devDependencies": {
"@types/jest": "^24.0.15",
"husky": "^3.1.0",
"jest": "^24.8.0",
"lint-staged": "^9.5.0",
"microbundle": "^0.12.0-next.3",
"prettier": "^1.19.1",
"ts-jest": "^24.0.2",
"typescript": "^3.5.3"
},
"files": [
"dist",
"lib",
"scripts",
"__tests__",
"LICENSE",
"README.md",
"package.json"
]
}