forked from ncatestify/cypress-base-plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.5 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
{
"name": "cypress-ncatestify-plugin",
"version": "2.1.54",
"description": "NCA TESTIFY commands and tests",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist/**/*.js",
"dist/**/*.d.ts"
],
"scripts": {
"typecheck": "tsc --skipLibCheck --noEmit",
"postbuild": "copyfiles -u 1 src/index.d.ts dist && rm jest.config.js",
"build": "tsc --skipLibCheck",
"lint": "eslint --ext=.js,.ts,.tsx",
"release": "npm run build && npm version patch && node scripts/release.js && npm publish",
"cy:open": "cypress open",
"cy:run": "cypress run",
"prettier": "npx prettier --write .",
"format": "prettier --write \"**/*.{js,ts}\""
},
"keywords": [
"cypress",
"testing",
"NCA",
"TESTIFY"
],
"author": "Roland Golla",
"license": "ISC",
"peerDependencies": {
"@11ty/eleventy": "^2.0.0",
"axe-core": "^4.0.0",
"chai": "^4.3.10",
"cypress": "^13.1.0",
"typescript": "^4.9.5",
"cypress-axe": "^1.5.0"
},
"devDependencies": {
"@types/jest": "^29.5.6",
"@typescript-eslint/eslint-plugin": "^5.54.0",
"copyfiles": "^2.4.1",
"cypress": "^13.3.3",
"eslint": "^8.35.0",
"eslint-config-standard-with-typescript": "^34.0.0",
"eslint-plugin-cypress": "^2.12.1",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-n": "^15.6.1",
"eslint-plugin-promise": "^6.1.1",
"jest": "^29.7.0",
"prettier": "^2.8.4",
"rimraf": "^5.0.5",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1"
}
}