-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.13 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
{
"name": "nanoservices",
"version": "0.0.11",
"description": "比微服务更小的纳米服务框架",
"main": "index.js",
"files": [
"index.js",
"lib"
],
"scripts": {
"test": "npm run lint && mocha -t 10000",
"test-cov": "istanbul cover _mocha --report lcovonly -- -t 10000 -R spec && cat ./coverage/lcov.info | coveralls",
"lint": "eslint lib test example/*.js --fix && echo 'eslint passed'",
"prepublish": "npm test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/SuperID/nanoservices.git"
},
"keywords": [
"microservices"
],
"author": "Zongmin Lei <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/SuperID/nanoservices/issues"
},
"homepage": "https://github.com/SuperID/nanoservices#readme",
"dependencies": {
"bluebird": "^3.4.1",
"lei-utils": "^3.0.0",
"mkdirp": "^0.5.1"
},
"devDependencies": {
"coveralls": "^2.11.11",
"eslint": "^3.8.1",
"eslint-config-lei": "^0.0.16",
"eslint-plugin-promise": "^3.3.0",
"istanbul": "^0.4.4",
"lei-coroutine": "^1.2.3",
"mocha": "^3.1.2"
}
}