-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
52 lines (52 loc) · 1.19 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
{
"name": "wfs-client",
"version": "0.4.1",
"description": "A very simple WFS client",
"main": "index.js",
"files": [
"index.js",
"lib"
],
"repository": "git://github.com/geodatagouv/wfs-client.git",
"keywords": [
"WFS",
"OGC"
],
"author": "Jérôme Desboeufs <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/geodatagouv/wfs-client/issues"
},
"homepage": "https://github.com/geodatagouv/wfs-client",
"dependencies": {
"debug": "^4.1.0",
"got": "^9.2.2",
"libxmljs": "^0.19.5",
"lodash": "^4.17.11",
"semver": "^5.6.0"
},
"devDependencies": {
"lerna-changelog": "^0.8.2",
"xo": "^0.24.0"
},
"engines": {
"node": ">=8"
},
"xo": {
"semicolon": false,
"space": 2
},
"changelog": {
"cacheDir": ".changelog",
"labels": {
"bug": ":bug: Bug Fix",
"build": ":building_construction: Build Process",
"cleanup": ":shower: Cleanup",
"documentation": ":memo: Documentation",
"enhancement": ":rocket: Enhancement",
"performance": ":racehorse: Performance",
"security": ":policeman: Security"
},
"repo": "geodatagouv/wfs-client"
}
}