-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.17 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.17 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
{
"name": "cygger",
"version": "0.0.4",
"description": "Boilerplate generator for API Testing from Swagger to Cypress",
"main": "index.js",
"scripts": {
"test": "jest ./test/*",
"test:watch": "jest --watch --verbose ./test/*",
"start": "node index.js",
"dev": "nodemon index.js",
"lint": "standard",
"lint:fix": "standard --fix"
},
"author": "Alex Ramirez <alexander.ramirez@gmail.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/RamirezAlex/cygger.git"
},
"homepage": "https://github.com/RamirezAlex/cygger",
"bugs": {
"url": "https://github.com/RamirezAlex/cygger/issues"
},
"bin": {
"cygger": "./bin/cli.js"
},
"standard": {
"globals": [
"describe",
"expect",
"test"
]
},
"keywords": [
"cypress",
"cypress.io",
"api-testing",
"e2e-testing",
"cli",
"swagger",
"openapi",
"test",
"testing"
],
"engines": {
"node": ">=8.9.3"
},
"dependencies": {
"commander": "^3.0.1",
"standard": "^14.3.1",
"swagger-parser": "^8.0.1"
},
"devDependencies": {
"jest": "^24.9.0",
"nodemon": "^1.19.3"
}
}