-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
68 lines (68 loc) · 1.35 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
{
"name": "csw-client",
"version": "0.18.3",
"description": "A very simple CSW client",
"main": "index.js",
"scripts": {
"lint": "xo",
"test": "nyc mocha"
},
"files": [
"bin/",
"lib/",
"index.js"
],
"bin": "./bin/cli.js",
"repository": {
"type": "git",
"url": "git://github.com/geodatagouv/csw-client.git"
},
"keywords": [
"CSW",
"OGC",
"harvester"
],
"author": "Jérôme Desboeufs <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/geodatagouv/csw-client/issues"
},
"engines": {
"node": ">= 8.0"
},
"homepage": "https://github.com/geodatagouv/csw-client",
"dependencies": {
"bluebird": "^3.5.1",
"chalk": "^2.4.1",
"commander": "^2.17.1",
"debug": "^3.1.0",
"hasha": "^3.0.0",
"inspire-parser": "^0.15.0",
"json-stable-stringify": "^1.0.1",
"lodash": "^4.17.10",
"mississippi": "^3.0.0",
"progress": "^2.0.0",
"request": "^2.87.0",
"stringstream": "^0.0.6"
},
"devDependencies": {
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"codecov": "^3.1.0",
"mocha": "^5.2.0",
"nock": "^10.0.2",
"nyc": "^13.1.0",
"xo": "^0.23.0"
},
"xo": {
"semicolon": false,
"space": 2
},
"nyc": {
"all": true,
"reporter": [
"lcov",
"text-summary"
]
}
}