-
Notifications
You must be signed in to change notification settings - Fork 21
/
package.json
60 lines (60 loc) · 1.57 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
{
"name": "@pansy/china-division",
"version": "2.1.0",
"description": "中国省市区数据",
"main": "lib/index.js",
"module": "es/index.js",
"typings": "es/index.d.ts",
"files": [
"es",
"lib",
"data-source"
],
"sideEffects": false,
"keywords": [
"cityData"
],
"scripts": {
"build": "npm run export && father-build",
"export": "npm run export:data && npm run export:json",
"export:json": "walrus run ./scripts/export-json.ts",
"export:data": "walrus run ./scripts/export-data.ts",
"test": "walrus-test",
"lint:commit": "walrus commitlint --env HUSKY_GIT_PARAMS",
"prettier": "walrus prettier",
"release": "walrus release"
},
"repository": "[email protected]:ts-react/china-city-data.git",
"author": "wangxingkang <[email protected]>",
"license": "MIT",
"devDependencies": {
"@types/lodash": "4.14.170",
"@types/sequelize-cursor-pagination": "1.2.1",
"@walrus/cli": "1.3.4",
"@walrus/plugin-release": "1.12.1",
"@walrus/plugin-run": "0.5.0",
"@walrus/preset-lint": "^1.1.8",
"@walrus/test": "1.3.0",
"china-division": "2.7.0",
"cross-env": "7.0.3",
"father-build": "1.19.8",
"husky": "5.1.3",
"lodash": "4.17.21",
"sequelize": "6.6.4",
"sequelize-cursor-pagination": "^2.2.1",
"typescript": "4.3.4"
},
"husky": {
"hooks": {
"pre-commit": "yarn prettier",
"commit-msg": "yarn lint:commit"
}
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org"
},
"engines": {
"node": ">=8.9.0"
}
}