forked from DMevada/TestDoubles
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.18 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
{
"name": "testdoubles",
"version": "0.9.24",
"description": "TestDoubles - Light Weight Service Virtualization for iPaaS and Microservices",
"main": "./bin/tdctl",
"scripts": {
"lint": "./node_modules/jshint/bin/jshint src/*",
"scalability-test": "npm run start && sleep 5 && ./node_modules/mocha/bin/mocha test/Scalability.js && ./bin/tdctl stop",
"start": "./bin/tdctl &",
"pretest": "npm run start && sleep 15",
"test": "./node_modules/mocha/bin/mocha test/*",
"posttest": "./bin/tdctl stop"
},
"repository": {
"type": "git",
"url": "https://github.com/DevTestSolutions/TestDoubles"
},
"keywords": [
"test",
"double",
"service",
"virtualization"
],
"author": "CA Technologies",
"contributors": [
{
"name": "Dhruv Mevada"
},
{
"name": "Stephy Nancy"
},
{
"name": "Rajesh Raheja"
}
],
"license": "MIT",
"homepage": "https://github.com/DevTestSolutions/TestDoubles",
"dependencies": {
"chai": "^3.2.0",
"hapi": "^8.6.1",
"log4js": "^0.6.26",
"mocha": "^2.3.2",
"mountebank": "^1.2.122",
"request": "^2.61.0"
},
"devDependencies": {
"jshint": "^2.8.0"
}
}