This repository was archived by the owner on Jul 15, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 21
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.52 KB
/
Copy pathpackage.json
File metadata and controls
63 lines (63 loc) · 1.52 KB
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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
{
"name": "super-powered-api-testing",
"version": "2.1.3",
"description": "Sample REST API tests, written in Mocha + Chai",
"keywords": [
"rest",
"api",
"test",
"testing",
"browser",
"universal"
],
"author": {
"name": "James Messinger",
"url": "https://jamesmessinger.com"
},
"license": "MIT",
"homepage": "https://apitesting.jamesmessinger.com",
"repository": {
"type": "git",
"url": "git+https://github.com/JamesMessinger/super-powered-api-testing.git"
},
"files": [
"lib",
"test",
"browser.html",
"karma.conf.js",
"README.md"
],
"scripts": {
"start": "opn browser.html",
"test": "npm run mocha && npm run karma",
"mocha": "mocha",
"karma": "karma start --single-run",
"upgrade": "npm-check -u",
"bump": "bump --prompt --grep README.md --tag --push --all",
"release": "npm run upgrade && npm test && npm run bump && npm publish"
},
"dependencies": {
"chai": "^4.1.2",
"chai-http": "^3.0.0",
"chai-json-schema": "^1.5.0",
"karma": "^1.7.1",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^2.2.0",
"karma-cli": "^1.0.1",
"karma-firefox-launcher": "^1.0.1",
"karma-host-environment": "^1.1.1",
"karma-ie-launcher": "^1.0.0",
"karma-mocha": "^1.3.0",
"karma-safari-launcher": "^1.0.0",
"mocha": "^4.0.1",
"opn-cli": "^3.1.0"
},
"devDependencies": {
"npm-check": "^5.4.5",
"version-bump-prompt": "^3.1.2"
},
"engines": {
"node": ">=4.0",
"npm": ">=2.0"
}
}