This repository has been archived by the owner on Jan 18, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 23
/
package.json
96 lines (96 loc) · 3.95 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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
{
"name": "@briebug/cypress-schematic",
"version": "5.0.1",
"description": "Add cypress to an Angular CLI project",
"builders": "src/builders/builders.json",
"repository": "briebug/cypress-schematic",
"bugs": "https://github.com/briebug/cypress-schematic/issues",
"homepage": "https://github.com/briebug/cypress-schematic",
"main": "src/cypress/index.js",
"scripts": {
"build": "tsc -p tsconfig.json",
"build:test": "tsc -p tsconfig.spec.json",
"build:watch": "tsc -p tsconfig.json -watch",
"build:test:watch": "tsc -p tsconfig.spec.json -watch",
"build:clean:launch": "npm run build && npm run clean:launch",
"build:clean:launch:v12": "npm run build && npm run clean:launch:v12",
"clean": "git checkout HEAD -- sandbox && git clean -f -d sandbox",
"clean:v12": "git checkout HEAD -- sandbox-v12 && git clean -f -d sandbox-v12",
"clean:launch": "npm run clean && npm run launch",
"clean:launch:v12": "npm run clean:v12 && npm run launch:v12",
"launch": "npm run link:sandbox && cd sandbox && ng add @briebug/cypress-schematic --remove-protractor",
"launch:v12": "npm run link:sandbox:v12 && cd sandbox-v12 && ng add @briebug/cypress-schematic --no-remove-protractor",
"link:sandbox": "npm link && cd sandbox && npm link @briebug/cypress-schematic",
"link:sandbox:v12": "npm link && cd sandbox-v12 && npm link @briebug/cypress-schematic",
"unlink:sandbox": "cd sandbox && npm unlink @briebug/cypress-schematic && cd .. && npm unlink",
"release": "np",
"test": "npm run build:clean:launch && npm run test:sandbox && npm run clean",
"test:v12": "npm run build:clean:launch:v12 && npm run test:sandbox:v12 && npm run clean:v12",
"test:sandbox": "cd sandbox && npm run lint && npm run test && npm run build && npm run e2e",
"test:sandbox:v12": "cd sandbox-v12 && npm run test && npm run build && npm run e2e",
"test:unit": "jasmine src/**/*_spec.js",
"test:e2e": "cd sandbox && ng run sandbox:cypress-run",
"build:clean:launch:ws": "npm run build && npm run clean:launch:ws",
"clean:ws": "git checkout HEAD -- sandbox-workspace && git clean -f -d sandbox-workspace",
"clean:launch:ws": "npm run clean:ws && npm run launch:ws",
"launch:ws": "npm run link:workspace && cd sandbox-workspace && ng add @briebug/cypress-schematic --remove-protractor",
"link:workspace": "npm link && cd sandbox-workspace && npm link @briebug/cypress-schematic",
"unlink:workspace": "cd sandbox-workspace && npm unlink @briebug/cypress-schematic && cd .. && npm unlink",
"test:ws": "npm run build:clean:launch:ws && npm run test:sandbox-workspace && npm run clean:ws",
"test:sandbox-workspace": "cd sandbox-workspace && npm run lint && npm run test && npm run build",
"test:e2e:ws": "cd sandbox-workspace && ng run new-sandbox:cypress-run"
},
"keywords": [
"builders",
"cypress",
"e2e",
"schematics",
"testing",
"time-travel"
],
"author": "Briebug",
"license": "MIT",
"schematics": "./src/schematics/collection.json",
"ng-add": {
"save": "devDependencies"
},
"publishConfig": {
"access": "public"
},
"engines": {
"node": ">=10"
},
"contributors": [
{
"name": "Anthony Jones",
"email": "[email protected]",
"url": "https://briebug.com"
},
{
"name": "Marvin Heilemann",
"email": "[email protected]",
"url": "https://marvin.digital/"
}
],
"peerDependencies": {
"cypress": "^7.0.0"
},
"dependencies": {
"@angular-devkit/architect": "^0.1001.0",
"@angular-devkit/core": "^10.1.0",
"@angular-devkit/schematics": "^10.1.0",
"@schematics/angular": "^10.1.0",
"rxjs": "6.6.2"
},
"devDependencies": {
"@types/jasmine": "^3.5.14",
"@types/node": "^10.17.30",
"chalk": "^4.1.0",
"cypress": "^7.0.0",
"husky": "^4.2.5",
"jasmine": "^3.6.1",
"lint-staged": "^10.2.13",
"prettier": "^2.1.1",
"typescript": "^4.0.2"
}
}