-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
76 lines (76 loc) · 2.25 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": "@artlife/micro",
"version": "0.0.73",
"description": "A tiny and very opinionated microservices framework inspired by expressjs.",
"main": "build/index.js",
"types": "build/index.d.ts",
"scripts": {
"clean": "rm -rf build/*",
"build": "tsc",
"clean-build": "rm -rf build/* && tsc",
"build:watch": "tsc --watch",
"clean-build:watch": "rm -rf build/* && tsc --watch",
"test": "nyc mocha --opts ./src/test/mocha.opts",
"test:watch": "nyc mocha --watch --watch-extensions ts --opts ./src/test/mocha.opts",
"prepublishOnly": "npm run clean && tsc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/artlife-solutions/micro.git"
},
"keywords": [],
"author": "[email protected]",
"license": "MIT",
"bugs": {
"url": "https://github.com/artlife-solutions/micro/issues"
},
"homepage": "https://github.com/artlife-solutions/micro#readme",
"dependencies": {
"amqplib": "^0.5.2",
"axios": "^0.19.0",
"body-parser": "^1.19.0",
"chai": "4.2.0",
"express": "^4.16.4",
"express-prom-bundle": "^6.1.0",
"moment": "2.22.2",
"morgan-body": "^2.4.5",
"prom-client": "^12.0.0",
"request": "^2.88.0",
"request-promise": "^4.2.2",
"uuid": "^3.3.3"
},
"devDependencies": {
"@types/amqplib": "^0.5.8",
"@types/axios": "^0.14.0",
"@types/body-parser": "^1.17.0",
"@types/chai": "4.1.6",
"@types/express": "^4.16.0",
"@types/mocha": "5.2.5",
"@types/node": "10.11.4",
"@types/request": "^2.47.1",
"@types/request-promise": "^4.1.42",
"@types/uuid": "^3.4.5",
"@types/yargs": "^12.0.1",
"mocha": "5.2.0",
"nyc": "13.0.1",
"source-map-support": "0.5.9",
"ts-node": "7.0.1",
"typescript": "3.1.1"
},
"nyc": {
"extension": [
".ts"
],
"exclude": [
"**/*.d.ts",
"src/test/**/*",
"build/**/*",
"docs/**/*",
"coverage/**/*"
],
"reporter": [
"text-summary"
],
"all": true
}
}