-
Notifications
You must be signed in to change notification settings - Fork 30
/
package.json
37 lines (37 loc) · 920 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": "postman-rest-api-testing",
"version": "1.0.0",
"description": "Notes on how to use Postman to test REST APIs",
"main": "index.js",
"scripts": {
"server": "cd requestbin && docker-compose up",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/larrybotha/postman-rest-api-testing.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/larrybotha/postman-rest-api-testing/issues"
},
"homepage": "https://github.com/larrybotha/postman-rest-api-testing#readme",
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"devDependencies": {
"doctoc": "1.4.0",
"dotenv": "6.2.0",
"husky": "1.2.1",
"jest": "23.6.0",
"jest-runner-newman": "1.0.4",
"jest-watch-typeahead": "0.2.0",
"lint-staged": "8.1.0",
"newman": "4.2.3"
},
"dependencies": {}
}