forked from jlidder/jswiremock
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
40 lines (40 loc) · 941 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
39
40
{
"name": "node-jswiremock",
"version": "0.2.1",
"description": "A library used for stubbing and mocking web services.",
"scripts": {
"test": "mocha tests/*",
"integration e2e tests": "node tests/e2e_tests.js"
},
"private": false,
"dependencies": {
"body-parser": "1.17.1",
"chalk": "^2.4.2",
"deep-equal": "^1.0.1",
"express": "~4.15.2",
"lodash": "^4.17.11"
},
"devDependencies": {
"assert": "1.3.0",
"chai": "1.10.0",
"mocha": "2.1.0",
"request": "2.81.0"
},
"main": "jswiremock.js",
"directories": {
"test": "tests"
},
"repository": {
"type": "git",
"url": "https://github.com/uuau99999/jswiremock.git"
},
"keywords": [
"mock"
],
"author": "Jaspreet Lidder (http://jaspreetlidder.com)",
"license": "MIT",
"bugs": {
"url": "https://github.com/uuau99999/jswiremock/issues"
},
"homepage": "https://github.com/uuau99999/jswiremock"
}