forked from strongloop/microgateway
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 844 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
36
37
38
{
"name": "micro-gw",
"version": "1.0.0",
"description": "API Mesh MicroGateway",
"main": "index.js",
"scripts": {
"pretest": "eslint ./ && jscs ./",
"lint": "eslint ./ && jscs ./",
"start": "node .",
"test": "mocha"
},
"repository": {
"type": "git",
"url": "[email protected]:apimesh/micro-gw.git"
},
"keywords": [
"ibm",
"api",
"mesh",
"gateway",
"microservices",
"enforce"
],
"author": "IBM Gateway Team",
"license": "SEE LICENSE IN LICENSE.txt",
"devDependencies": {
"eslint": "^1.10.3",
"eslint-config-strongloop": "^1.0.2",
"jscs": "^2.9.0",
"mocha": "^2.4.5",
"should": "^8.2.1",
"sinon": "^1.17.3"
},
"dependencies": {
"express": "^4.13.4",
"flow-engine": "git+ssh://[email protected]:apimesh/flow-engine.git#develop"
}
}