-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
36 lines (36 loc) · 932 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
{
"name": "cypress-harvester",
"version": "1.3.0",
"description": "Extracts repeating elements from the DOM onto a more friendly json format",
"main": "cypress/support/commands.js",
"scripts": {
"prettier": "prettier --write --loglevel warn \"**/**/*.js\"",
"cytest": "./node_modules/.bin/cypress open",
"npm:gen": "pack"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ryanrosello-og/cypress-harvester.git"
},
"keywords": [
"cypress",
"web",
"scrape"
],
"types": "./types/index.d.ts",
"author": "Ryan Rosello",
"license": "ISC",
"bugs": {
"url": "https://github.com/ryanrosello-og/cypress-harvester/issues"
},
"homepage": "https://github.com/ryanrosello-og/cypress-harvester#readme",
"prettier": {
"singleQuote": true,
"tabWidth": 2,
"semi": true
},
"devDependencies": {
"cypress": "^13.9.0",
"prettier": "^3.2.5"
}
}