-
-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
66 lines (66 loc) · 2.11 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
{
"name": "@wdio/schematics",
"author": "Christian Bromann <[email protected]>",
"license": "MIT",
"version": "1.2.1",
"description": "WebdriverIO schematics for Angular CLI",
"repository": {
"type": "git",
"url": "git://github.com/webdriverio/webdriverio-schematics.git"
},
"publishConfig": {
"access": "public"
},
"bugs": {
"url": "https://github.com/webdriverio/webdriverio-schematics/issues"
},
"engines": {
"node": ">=12.0.0"
},
"keywords": [
"schematics",
"webdriverio",
"webdriver",
"wdio",
"e2e",
"testing"
],
"scripts": {
"build": "tsc -p tsconfig.json",
"clean": "run-p clean:*",
"clean:sandbox": "rm -rf ./sandbox/wdio.conf.js ./sandbox/test",
"clean:git": "cd sandbox && git checkout -- .",
"link:sandbox": "npm link && cd sandbox && npm link $npm_package_name",
"release": "release-it --github.release",
"release:ci": "npm run release -- --ci --npm.skipChecks --no-git.requireCleanWorkingDir",
"release:patch": "npm run release -- patch",
"release:minor": "npm run release -- minor",
"release:major": "npm run release -- major",
"unlink:sandbox": "cd sandbox && npm unlink $npm_package_name && cd .. && npm unlink",
"test": "run-s test:setup test:link test:addSchematic test:link test:runTest clean",
"test:setup": "cd sandbox && npm install",
"test:link": "run-s link:sandbox",
"test:addSchematic": "cd sandbox && npx ng add @wdio/schematics --yes",
"test:runTest": "cd sandbox && npx ng run sandbox:wdio-run",
"watch": "npm run build -- --watch"
},
"schematics": "./src/schematics/collection.json",
"builders": "./src/builders/builders.json",
"ng-add": {
"save": "devDependencies"
},
"dependencies": {
"@angular-devkit/architect": "^0.1202.0",
"@angular-devkit/core": "^12.2.0",
"@angular-devkit/schematics": "^14.2.8",
"@schematics/angular": "^12.2.0",
"@wdio/cli": "^7.1.2",
"typescript": "^4.2.3"
},
"devDependencies": {
"@types/jasmine": "~3.10.2",
"@types/node": "^17.0.5",
"npm-run-all": "^4.1.5",
"release-it": "^14.5.0"
}
}