forked from Skydipper/doc-executor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
69 lines (69 loc) · 1.88 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
{
"name": "doc-executor",
"version": "2.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "NODE_PATH=app/src node $NODE_DEBUG_OPTION ./node_modules/.bin/grunt --gruntfile app/Gruntfile.js e2eTest",
"coverage": "NODE_PATH=app/src node $NODE_DEBUG_OPTION ./node_modules/.bin/grunt --gruntfile app/Gruntfile.js nyc",
"start": "NODE_PATH=app/src node $NODE_DEBUG_OPTION --max-old-space-size=4096 app/index.js",
"prepare": "husky install"
},
"keywords": [],
"author": {
"name": "Vizzuality",
"email": "[email protected]",
"url": "http://vizzuality.com/"
},
"license": "MIT",
"engines": {
"node": "~20.4"
},
"devDependencies": {
"chai": "^4.3.7",
"chai-http": "^4.4.0",
"chai-match": "^1.1.1",
"eslint": "^8.45.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-mocha": "^10.1.0",
"eslint-plugin-react": "^7.32.2",
"grunt": "^1.6.1",
"grunt-cli": "^1.4.3",
"grunt-mocha-test": "^0.13.3",
"grunt-simple-nyc": "^3.0.1",
"husky": "^8.0.3",
"lint-staged": "^13.2.3",
"load-grunt-tasks": "^5.1.0",
"mocha": "^10.2.0",
"nock": "^13.3.2"
},
"dependencies": {
"@auth0/s3": "^1.0.0",
"@elastic/elasticsearch": "^7.9.1",
"@fast-csv/parse": "^4.3.6",
"JSONStream": "^1.3.1",
"amqplib": "^0.5.2",
"bluebird": "^3.4.7",
"bunyan": "^1.8.5",
"config": "^1.21.0",
"follow-redirects": "^1.13.0",
"koa": "^2.11.0",
"koa-simple-healthcheck": "^0.0.1",
"lodash": "^4.17.21",
"natives": "^1.1.6",
"randomstring": "^1.1.5",
"request": "^2.88.0",
"request-promise": "^4.2.2",
"rw-doc-importer-messages": "1.5.0",
"sleep": "^6.3.0",
"stampery": "^6.0.2",
"xml-json": "^2.0.2"
},
"lint-staged": {
"*.ts": [
"eslint --fix"
]
}
}