-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
50 lines (50 loc) · 1.21 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
{
"name": "playwright-ng-schematics",
"version": "1.2.2",
"description": "Playwright Angular schematics",
"scripts": {
"build": "tsc -p tsconfig.json",
"postbuild": "cpy \"src/**/*.json\" \"src/**/files/**/*\" lib",
"lint": "biome ci",
"lint:fix": "biome check --write",
"test": "jest",
"test:ci": "jest --runInBand"
},
"files": [
"lib",
"CHANGELOG.md"
],
"repository": {
"type": "git",
"url": "https://github.com/playwright-community/playwright-ng-schematics.git"
},
"license": "Apache-2.0",
"keywords": [
"angular",
"e2e",
"playwright",
"schematics",
"testing"
],
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@schematics/angular": "18.0.7",
"@types/jest": "^29.5.14",
"@types/node": "^20.17.10",
"cpy-cli": "^5.0.0",
"jest": "^29.7.0",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"typescript": "^5.7.2"
},
"dependencies": {
"@angular-devkit/architect": "0.1800.6",
"@angular-devkit/core": "18.0.6",
"@angular-devkit/schematics": "18.0.6"
},
"builders": "./lib/builders/builders.json",
"schematics": "./lib/schematics/collection.json",
"ng-add": {
"save": "devDependencies"
}
}