-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 814 Bytes
/
package.json
File metadata and controls
28 lines (28 loc) · 814 Bytes
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
{
"name": "gcb-docker-compose",
"version": "0.0.1",
"description": "Example on how to use docker-compose to run integration tests on your latest build",
"main": "index.js",
"scripts": {
"start": "node main.js",
"test": "npm run test:unit",
"test:unit": "node_modules/.bin/mocha --reporter spec test/unit_test.js",
"test:integration": "node_modules/.bin/mocha --reporter spec test/integration_test.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Philmod/gcb-docker-compose.git"
},
"dependencies": {
"grpc": "^1.2.0",
"redis": "^2.7.1"
},
"author": "Philmod <philippe.modard@gmail.com>",
"license": "Apache-2.0",
"devDependencies": {
"async": "^2.2.0",
"fakeredis": "^2.0.0",
"mocha": "^3.2.0",
"should": "^11.2.1"
}
}