-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
54 lines (54 loc) · 1.25 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
{
"name": "wgii",
"version": "0.0.1",
"description": "Geographic Information Integration for World,世界地理信息集成",
"main": "index.js",
"scripts": {
"build": "node ./build/index.js",
"test": "jest",
"precommit": "lint-staged"
},
"repository": {
"type": "git",
"url": "git+https://github.com/occultskyrong/wgii.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/occultskyrong/wgii/issues"
},
"homepage": "https://github.com/occultskyrong/wgii#readme",
"dependencies": {
"bluebird": "^3.5.4",
"cheerio": "^1.0.0-rc.3",
"coordtransform": "^2.1.2",
"lodash": "^4.17.11",
"log4js": "^4.1.0",
"mysql2": "^1.6.5",
"request": "^2.88.0",
"request-promise": "^4.2.4",
"sequelize": "^5.3.3"
},
"devDependencies": {
"cz-conventional-changelog": "^2.1.0",
"eslint": "^5.12.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-plugin-import": "^2.14.0",
"husky": "^1.3.1",
"jest": "^23.6.0",
"lint-staged": "^8.1.0"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"lint-staged": {
"linters": {
"*.js": [
"eslint --fix",
"git add"
]
}
}
}