This repository has been archived by the owner on Aug 20, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
69 lines (69 loc) · 2.03 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": "warehouse.ai-status-api",
"version": "2.1.7",
"description": "Status and build logs management for the warehouse system",
"main": "index.js",
"bin": {
"warehouse-status": "bin/server"
},
"scripts": {
"pretest": "npm run swagger",
"test": "AWS_SECRET_ACCESS_KEY=secret AWS_ACCESS_KEY_ID=key nyc --reporter=lcov --reporter=text mocha test/*.test.js --timeout 10000",
"lint": "eslint-godaddy *.js \"{preboots,routes,test}/**/*.js\"",
"localstack": "docker run -it -p 4569:4569 -e SERVICES=dynamodb --rm localstack/localstack",
"prepublishOnly": "npm run swagger",
"swagger": "swagger-jsdoc -d swagger/definition.js -o swagger/documentation.json",
"posttest": "npm run lint"
},
"keywords": [
"warehouse.ai",
"status",
"carpenterd",
"build"
],
"author": "GoDaddy.com Operating Company LLC",
"repository": {
"type": "git",
"url": "https://github.com/godaddy/warehouse.ai-status-api"
},
"license": "MIT",
"dependencies": {
"authboot": "^2.0.1",
"aws": "0.0.3-2",
"aws-liveness": "^1.1.0",
"body-parser": "^1.19.0",
"dynamodb-x": "^1.2.3",
"express-async-handler": "^1.1.3",
"make-promises-safe": "^1.1.0",
"nsq-stream": "^2.1.1",
"nsq.js-k8": "^1.2.1",
"p-limit": "^2.2.1",
"parallel-transform": "^1.1.0",
"request-promise-native": "^1.0.8",
"rip-out": "^1.0.0",
"slay": "^1.1.0",
"slay-config": "^2.2.0",
"slay-log": "^2.3.0",
"swagger-jsdoc": "^3.2.9",
"swagger-ui-express": "^4.0.4",
"through2": "^3.0.1",
"tinythen": "^1.0.1",
"uuid": "^3.3.0",
"warehouse.ai-api-client": "^4.4.1",
"warehouse.ai-status-models": "^2.0.3"
},
"devDependencies": {
"assume": "^2.2.0",
"assume-sinon": "^1.0.1",
"eslint": "^6.7.0",
"eslint-config-godaddy": "^4.0.0",
"eslint-plugin-json": "^1.2.0",
"eslint-plugin-mocha": "^6.2.2",
"json-refs": "^3.0.12",
"mocha": "^6.2.2",
"nock": "^11.7.0",
"nyc": "^14.1.1",
"request": "^2.87.0",
"sinon": "^7.5.0"
}
}