-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
76 lines (76 loc) · 1.91 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
{
"name": "warehouse.ai",
"version": "7.3.0",
"description": "Scalable Object Ledger and CDN",
"main": "lib/app.js",
"directories": {
"lib": "lib",
"test": "test"
},
"dependencies": {
"compare-versions": "^5.0.3",
"dotenv": "^16.4.5",
"fastify-auth": "^1.2.0",
"fastify-autoload": "^3.13.0",
"fastify-etag": "^2.2.0",
"fastify-sensible": "^3.2.0",
"fastify-swagger": "^5.2.0",
"fingerprinting": "^1.0.1",
"mime-types": "^2.1.35",
"ms": "^2.1.3",
"node-fetch": "^2.6.9",
"pino": "^8.19.0",
"tar": "^6.2.1",
"uuid": "^9.0.1"
},
"peerDependencies": {
"aws-sdk": ">= 2.800.0 < 3",
"fastify": ">= 3 < 4",
"fastify-plugin": ">= 3 < 4"
},
"devDependencies": {
"aws-sdk": "^2.1586.0",
"eslint": "^8.57.0",
"eslint-config-godaddy": "^7.1.0",
"fastify": "^3.29.5",
"fastify-plugin": "^4.5.1",
"fastify-cli": "^2.3.0",
"nock": "^13.5.4",
"nodemon": "^2.0.22",
"pino-pretty": "^10.0.0",
"standard-version": "^9.5.0",
"tap": "^16.3.4"
},
"scripts": {
"lint": "npm run eslint -- --fix",
"eslint": "eslint ./{bin,lib,test}/**/*.js",
"prettier": "prettier --write lib bin test",
"release": "standard-version -t ''",
"test": "tap test/**/*.test.js",
"posttest": "npm run eslint",
"start": "node lib/app.js",
"init-localstack": "./bin/init-localstack.js",
"dev": "LOCALSTACK=1 nodemon lib/app.js",
"localstack": "docker-compose up -d"
},
"repository": {
"type": "git",
"url": "git+https://github.com/godaddy/warehouse.ai.git"
},
"keywords": [
"warehouse",
"ledger",
"asset",
"object",
"cdn"
],
"author": "GoDaddy.com Operating Company LLC",
"license": "MIT",
"bugs": {
"url": "https://github.com/godaddy/warehouse.ai/issues"
},
"homepage": "https://github.com/godaddy/warehouse.ai#readme",
"tap": {
"check-coverage": false
}
}