This repository was archived by the owner on Jan 27, 2022. It is now read-only.
forked from pedrosousabarreto/node-microsvc-lib
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 1.81 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 1.81 KB
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
{
"name": "node-microsvc-lib",
"version": "1.0.1",
"description": "NodeJS microservice framework library",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"test": "npm run build && node_modules/.bin/mocha --exit lib/tests",
"prepublishOnly": "npm test",
"prepare": "npm run build",
"preversion": "npm test",
"version": "git add -A src",
"postversion": "git push && git push --tags",
"build": "tsc",
"cover": "nyc --all --cache node_modules/.bin/mocha lib/tests/index.js --exit -- -R spec",
"cover_report": "nyc report --reporter=lcov"
},
"author": "Pedro Sousa Barreto <pedrosousabarreto@gmail.com>",
"license": "MIT",
"keywords": [
"node.js",
"microservice",
"framework",
"light",
"library",
"node",
"dependency injection",
"dependency container"
],
"nyc": {
"check-coverage": true,
"per-file": false,
"lines": 75,
"statements": 75,
"functions": 75,
"branches": 75
},
"files": [
"lib/**/*"
],
"repository": {
"type": "git",
"url": "https://github.com/pedrosousabarreto/node-microsvc-lib.git"
},
"dependencies": {
"async": "^2.6.1",
"aws-sdk": "^2.428.0",
"express": "^4.16.4",
"lodash": "^4.17.11",
"request": "^2.88.0",
"underscore": "^1.9.1",
"uuid": "^3.3.2"
},
"devDependencies": {
"@types/async": "^2.0.50",
"@types/aws-sdk": "^2.7.0",
"@types/chai": "^4.1.7",
"@types/express": "^4.16.0",
"@types/lodash": "^4.14.123",
"@types/mocha": "^5.2.5",
"@types/request": "^2.48.1",
"@types/underscore": "^1.8.9",
"@types/uuid": "^3.4.4",
"chai": "^4.2.0",
"coveralls": "^3.0.2",
"istanbul": "^0.4.5",
"mocha": "^5.2.0",
"nyc": "^13.3.0",
"ts-node-dev": "^1.0.0-pre.32",
"typescript": "^3.2.2"
}
}