-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
82 lines (82 loc) · 2.18 KB
/
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
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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"name": "umbraco-cypress-testhelpers",
"version": "1.0.0",
"description": "Test helpers for making Cypress tests for Umbraco solutions",
"main": "./lib/index.js",
"typings": "./lib/types/index.d.ts",
"types": "lib/types",
"scripts": {
"clean": "rimraf lib",
"format": "prettier --write \"src/**/*.ts\"",
"lint": "eslint --ext ts ./cypress/integration ./src",
"jest": "jest --clearCache && jest ",
"test": "npm run jest",
"build": "tsc",
"prepare": "npm run clean && npm run lint && npm run format && npm run jest && npm run build",
"pack": "npm pack",
"cypress:open": "cypress open",
"cypress:run": "cypress run",
"postinstall": "node postinstall.js"
},
"files": [
"lib",
"src",
"postinstall.js"
],
"repository": {
"type": "git",
"url": "git+https://github.com/bergmania/umbraco-cypress-testhelpers.git"
},
"keywords": [
"umbraco",
"cypress",
"builder",
"pattern",
"e2e",
"test",
"cypress-plugin"
],
"author": "Bjarke Berg",
"license": "MIT",
"bugs": {
"url": "https://github.com/bergmania/umbraco-cypress-testhelpers/issues"
},
"homepage": "https://github.com/bergmania/umbraco-cypress-testhelpers",
"devDependencies": {
"@types/chai": "^4.2.12",
"@types/faker": "^4.1.12",
"@types/jest": "^26.0.9",
"@types/node": "^14.0.27",
"@typescript-eslint/eslint-plugin": "^3.9.0",
"@typescript-eslint/parser": "^3.9.0",
"chai": "^4.2.0",
"cross-env": "^7.0.2",
"cy-verify-downloads": "0.0.5",
"cypress": "^8.0.0",
"cypress-file-upload": "^4.0.7",
"cypress-wait-until": "^1.7.1",
"eslint": "^7.6.0",
"eslint-config-prettier": "^6.11.0",
"jest": "^26.3.0",
"jest-trx-results-processor": "^2.0.3",
"ncp": "^2.0.0",
"path": "^0.12.7",
"prettier": "^2.0.5",
"rimraf": "^3.0.2",
"rxjs": "^6.6.2",
"start-server-and-test": "^1.11.3",
"testdouble": "^3.16.1",
"ts-jest": "^26.2.0",
"ts-loader": "^8.0.2",
"typescript": "^3.9.7"
},
"peerDependencies": {
"cypress": "^8.0.0",
"cross-env": "^7.0.2",
"ncp": "^2.0.0"
},
"dependencies": {
"camelize": "^1.0.0",
"faker": "^4.1.0"
}
}