-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
executable file
·46 lines (46 loc) · 1.14 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
{
"name": "@random-guys/bucket",
"version": "0.10.1",
"description": "Wrapper around axios for interservice communication",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"migrations": "bin/migrate.js"
},
"scripts": {
"build": "tsc -p ./tsconfig.json",
"watch": "tsc -w -p ./tsconfig.json",
"test": "jest --detectOpenHandles --runInBand --forceExit"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/random-guys/bucket.git"
},
"bugs": {
"url": "https://github.com/random-guys/bucket/issues"
},
"homepage": "https://github.com/random-guys/bucket#readme",
"devDependencies": {
"@types/jest": "^25.2.3",
"@types/migrate-mongo": "^8.1.0",
"@types/supertest": "^2.0.9",
"@types/uuid": "^3.4.4",
"jest": "^26.0.1",
"supertest": "^4.0.2",
"ts-jest": "^26.0.0",
"typescript": "^3.5.2"
},
"files": [
"dist/",
"samples/"
],
"dependencies": {
"commander": "^5.1.0",
"date-fns": "^2.14.0",
"http-status-codes": "^1.3.2",
"migrate-mongo": "^8.2.2",
"mongoose": "^5.12.13",
"uuid": "^3.3.2"
}
}