-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpackage.json
37 lines (37 loc) · 854 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
{
"name": "jswiremock",
"version": "0.3.6",
"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": {
"express": "~4.15.2",
"body-parser": "1.17.1"
},
"devDependencies": {
"mocha": "2.1.0",
"chai": "1.10.0",
"assert": "1.3.0",
"request": "2.81.0"
},
"main": "jswiremock.js",
"directories": {
"test": "tests"
},
"repository": {
"type": "git",
"url": "https://github.com/jlidder/jswiremock.git"
},
"keywords": [
"mock"
],
"author": "Jaspreet Lidder (http://jaspreetlidder.com)",
"license": "GNU",
"bugs": {
"url": "https://github.com/jlidder/jswiremock/issues"
},
"homepage": "https://github.com/jlidder/jswiremock"
}