-
-
Notifications
You must be signed in to change notification settings - Fork 70
/
package.json
94 lines (94 loc) · 2.53 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
{
"private": true,
"name": "hemera",
"author": "Dustin Deus (https://github.com/StarpTech)",
"homepage": "https://hemerajs.github.io/hemera/",
"repository": {
"url": "git@github.com:hemerajs/hemera.git",
"type": "git"
},
"keywords": [
"micro",
"service",
"microservice",
"micro-service",
"microservices",
"micro-services",
"services",
"micro services",
"micro service",
"framework",
"minimum",
"viable",
"product",
"toolkit",
"startup",
"nats",
"messaging",
"pubsub",
"publish",
"subscribe",
"queue",
"distributed",
"queueing"
],
"scripts": {
"format": "pretty-quick",
"format-all": "prettier --config .prettierrc --write ./packages/**/*.js ./test/**/*.js ./examples/**/*.js",
"lint": "eslint \"./packages/**/*.js\" \"./test/**/*.js\"",
"lint:fix": "eslint --fix \"./packages/**/*.js\" \"./test/**/*.js\"",
"ci:setup": "yarn",
"clean": "lerna clean",
"publish": "lerna publish",
"lerna": "lerna",
"test": "nyc mocha -b -r \"./test/hemera/bootstrap\" -t 5000 --exit \"./test/**/*.spec.js\" && yarn run typescript",
"typescript": "tsc --project ./test/hemera/types/tsconfig.json",
"coverage": "yarn run test && nyc report --reporter=html",
"ci": "nyc mocha -r \"./test/hemera/bootstrap\" -t 5000 --exit \"./test/**/*.spec.js\" && nyc report --reporter=text-lcov | coveralls"
},
"husky": {
"hooks": {
"precommit": "pretty-quick --staged && yarn run lint && yarn run test"
}
},
"engines": {
"node": ">=6"
},
"license": "MIT",
"devDependencies": {
"async": "^2.6.1",
"axios": "^0.18.0",
"code": "^4.1.0",
"coveralls": "^3.0.2",
"eslint": "^5.14.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-config-hemera": "^1.0.0",
"eslint-config-prettier": "^4.0.0",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-mocha": "^5.3.0",
"eslint-plugin-node": "^8.0.1",
"eslint-plugin-prettier": "^3.0.1",
"eslint-plugin-promise": "^4.0.1",
"hemera-testsuite": "^4.1.0",
"husky": "^1.3.1",
"istanbul": "^0.4.5",
"joi": "^12.0.0",
"lerna": "2.11.0",
"lint-staged": "^8.1.3",
"mocha": "^5.2.0",
"mocha-lcov-reporter": "^1.3.0",
"nats": "1.2.x",
"nyc": "^11.0.2",
"prettier": "^1.16.4",
"pretty-quick": "^1.10.0",
"promise-retry": "^1.1.1",
"proxyquire": "^2.1.0",
"sinon": "^7.2.3",
"split2": "^3.1.0",
"typescript": "^3.3.3"
},
"workspaces": [
"packages/*"
],
"dependencies": {}
}