-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
35 lines (35 loc) · 928 Bytes
/
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
{
"name": "merapi",
"version": "0.19.3",
"description": "Javascript Framework for Microservices",
"main": "./index.js",
"types": "./index.d.ts",
"scripts": {
"test": "./node_modules/.bin/mocha",
"cover": "istanbul cover _mocha --report lcovonly -- -R spec && cat ./coverage/lcov.info | codacy-coverage && rm -rf ./coverage"
},
"repository": {
"type": "git",
"url": "https://github.com/kata-ai/merapi.git"
},
"author": "kata.ai",
"license": "MIT",
"dependencies": {
"bluebird": "^3.5.0",
"bluebird-co": "^2.2.0",
"colors": "^1.1.2",
"dateformat": "^1.0.12",
"esprima": "^4.0.0",
"is-class": "0.0.4",
"lodash": "^4.1.0",
"to-snake-case": "^1.0.0"
},
"devDependencies": {
"istanbul": "^0.4.5",
"codacy-coverage": "^2.0.2",
"mocha": "^2.4.5",
"mocha-lcov-reporter": "^1.3.0",
"sleep-promise": "^2.0.0",
"then-sleep": "^1.0.1"
}
}