-
Notifications
You must be signed in to change notification settings - Fork 60
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 898 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 898 Bytes
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
{
"name": "monkey",
"version": "1.0.0",
"description": "Random and smart monkey testing tool for web apps",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"monkey": "./node_modules/.bin/cypress run --config-file ./monkey-config.json",
"smart-monkey": "./node_modules/.bin/cypress run --config-file ./smart-monkey-config.json"
},
"repository": {
"type": "git",
"url": "git+https://github.com/TheSoftwareDesignLab/monkey-cypress"
},
"author": "jespitiaa",
"license": "ISC",
"bugs": {
"url": "https://github.com/TheSoftwareDesignLab/monkey-cypress/issues"
},
"homepage": "https://github.com/TheSoftwareDesignLab/monkey-cypress#readme",
"devDependencies": {
"cypress-log-to-output": "^1.0.8",
"cypress-plugin-tab": "^1.0.5"
},
"dependencies": {
"cypress": "4.2.0",
"faker": "^4.1.0"
}
}