-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
76 lines (76 loc) · 2.33 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
{
"name": "@skills17/cypress-helpers",
"version": "4.1.0",
"description": "Provides some Cypress helpers for usage in a skills competition environment.",
"main": "lib/index.js",
"files": [
"lib",
"bin",
"support.js",
"support.d.ts",
"plugins.js",
"plugins.d.ts"
],
"bin": {
"skills17-cypress": "./bin/skills17-cypress"
},
"scripts": {
"build": "npm run build:js && npm run build:types",
"build:js": "babel src --out-dir lib --delete-dir-on-start --extensions \".ts\"",
"build:js:watch": "npm run build:js -- --watch --verbose",
"build:types": "tsc --emitDeclarationOnly --project tsconfig.types.json",
"lint": "eslint . --ext .ts --ext .js --max-warnings 0",
"lint:fix": "npm run lint -- --fix",
"test": "jest",
"test:watch": "npm test -- --watch",
"test:update": "UPDATE_EXPECTED_OUTPUT=1 npm run test",
"prepublishOnly": "npm run lint && npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/skills17/cypress-helpers.git"
},
"author": "Cyril Wanner <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/skills17/cypress-helpers/issues"
},
"homepage": "https://github.com/skills17/cypress-helpers#readme",
"devDependencies": {
"@babel/cli": "^7.13.16",
"@babel/core": "^7.14.0",
"@babel/preset-env": "^7.14.1",
"@babel/preset-typescript": "^7.13.0",
"@types/cross-spawn": "^6.0.2",
"@types/jest": "^27.0.1",
"@types/node": "^16.7.10",
"@types/rimraf": "^3.0.0",
"@types/uniqid": "^5.3.0",
"@typescript-eslint/eslint-plugin": "^5.5.0",
"@typescript-eslint/parser": "^5.5.0",
"babel-jest": "^27.1.0",
"cypress": "^12.7.0",
"eslint": "^8.4.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-prettier": "^4.0.0",
"jest": "^27.1.0",
"mocha": "^9.1.1",
"prettier": "^2.3.0",
"rimraf": "^3.0.2",
"typescript": "^4.2.4"
},
"dependencies": {
"@skills17/static-task-server": "^3.0.0",
"@skills17/task-config": "^3.0.1",
"@skills17/test-result": "^2.1.0",
"@skills17/test-result-printer": "^2.1.2",
"cross-spawn": "^7.0.3",
"npm-run-path": "^4.0.1",
"uniqid": "^5.3.0"
},
"peerDependencies": {
"cypress": ">=9.1.1 <13.0.0"
}
}