forked from Skydipper/document-adapter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
103 lines (103 loc) · 2.75 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
{
"name": "rw-adapter-document",
"version": "2.1.0",
"description": "Resource Watch - Adapter document",
"main": "index.js",
"scripts": {
"start": "NODE_PATH=app/src node $NODE_DEBUG_OPTION app/index.js",
"test": "NODE_PATH=app/src node $NODE_DEBUG_OPTION ./node_modules/.bin/grunt --gruntfile app/Gruntfile.js test",
"coverage": "NODE_PATH=app/src node $NODE_DEBUG_OPTION ./node_modules/.bin/grunt --gruntfile app/Gruntfile.js nyc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/resource-watch/document-adapter.git"
},
"keywords": [
"gfw",
"api",
"microservice",
"node",
"javascript",
"koa"
],
"author": {
"name": "Vizzuality",
"email": "[email protected]",
"url": "http://vizzuality.com/"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/resource-watch/document-adapter/issues"
},
"homepage": "https://github.com/resource-watch/document-adapter",
"engines": {
"node": "~20.4"
},
"dependencies": {
"@elastic/elasticsearch": "7.13.0",
"JSONStream": "^1.3.4",
"amqplib": "^0.5.2",
"bunyan": "^1.8.5",
"config": "1.19.0",
"fast-csv": "1.0.0",
"geojson": "^0.4.1",
"json2csv": "^3.11.5",
"jsonapi-serializer": "^3.6.5",
"koa": "^2.11.0",
"koa-bodyparser": "^4.2.1",
"koa-compress": "^3.0.0",
"koa-logger": "^3.2.1",
"koa-mount": "^4.0.0",
"koa-router": "^7.4.0",
"koa-simple-healthcheck": "^0.0.1",
"koa-validate": "^1.0.7",
"lodash": "^4.17.21",
"md5": "2.1.0",
"randomstring": "1.1.5",
"request": "^2.88.0",
"rw-api-microservice-node": "^5.1.3",
"rw-doc-importer-messages": "1.5.0",
"sleep": "^6.3.0",
"sql2json": "^2.0.6",
"terraformer-wkt-parser": "^1.2.0",
"uuid": "^9.0.0",
"xml-json": "^2.0.2"
},
"devDependencies": {
"chai": "^4.3.7",
"chai-http": "^4.4.0",
"deep-equal-in-any-order": "^2.0.6",
"eslint": "^8.46.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-plugin-import": "^2.28.0",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-mocha": "^10.1.0",
"eslint-plugin-react": "^7.33.1",
"eslint-plugin-react-hooks": "^4.6.0",
"grunt": "^1.2.1",
"grunt-apidoc": "^0.11.0",
"grunt-cli": "^1.3.2",
"grunt-contrib-clean": "^2.0.0",
"grunt-contrib-watch": "^1.1.0",
"grunt-express-server": "^0.5.4",
"grunt-mocha-test": "^0.13.3",
"grunt-notify": "^0.4.5",
"grunt-simple-nyc": "^3.0.1",
"husky": "^4.2.5",
"lint-staged": "^10.2.11",
"load-grunt-tasks": "^5.1.0",
"mocha": "^10.2.0",
"nock": "^13.3.2",
"nyc": "^15.1.0"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"eslint --fix"
]
}
}