-
Notifications
You must be signed in to change notification settings - Fork 25
/
package.json
82 lines (82 loc) · 2.46 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
{
"name": "shallow-render",
"version": "18.0.0",
"description": "Shallow rendering test utility for Angular",
"main": "dist/index.js",
"files": [
"dist",
"LICENSE",
"README.md"
],
"typings": "dist/index",
"typescript": {
"definition": "dist/index"
},
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"scripts": {
"clean": "rm -rf dist coverage",
"build": "npm run clean && tsc --project tsconfig.prod.json",
"build:all": "npm run lint && npm run test && npm run build",
"test": "jest",
"test:fix": "npm run lint:fix && npm run test",
"test:watch": "npm test -- --watch",
"lint": "npm run lint:ts && npm run lint:format",
"lint:ts": "eslint '**/*.ts'",
"lint:ts:fix": "npm run lint:ts -- --fix",
"lint:format": "prettier --list-different '**/*'",
"lint:format:fix": "npm run lint:format -- --write",
"lint:fix": "npm run lint:ts:fix && npm run lint:format:fix",
"preversion": "npm run build:all",
"postversion": "echo 'Now run:\ngit push --follow-tags && npm publish'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/getsaf/shallow-render.git"
},
"keywords": [
"Angular",
"Mock",
"Testing",
"TypeScript"
],
"author": "Brandon Domingue <[email protected]>",
"contributors": [],
"license": "MIT",
"bugs": {
"url": "https://github.com/getsaf/shallow-render/issues"
},
"homepage": "https://github.com/getsaf/shallow-render#readme",
"peerDependencies": {
"@angular/common": "18.x",
"@angular/compiler": "18.x",
"@angular/core": "18.x",
"@angular/forms": "18.x",
"@angular/platform-browser": "18.x"
},
"devDependencies": {
"@angular-devkit/build-angular": "^18.0.3",
"@angular-eslint/eslint-plugin": "^18.0.0",
"@angular-eslint/eslint-plugin-template": "^18.0.1",
"@angular/common": "^18.0.2",
"@angular/compiler": "^18.0.2",
"@angular/compiler-cli": "^18.0.2",
"@angular/core": "^18.0.2",
"@angular/forms": "^18.0.2",
"@angular/platform-browser": "^18.0.2",
"@angular/platform-browser-dynamic": "^18.0.2",
"@angular/router": "^18.0.2",
"@types/jest": "^29.5.3",
"@typescript-eslint/eslint-plugin": "^6.1.0",
"@typescript-eslint/parser": "^6.1.0",
"eslint": "^8.45.0",
"jest": "^29.6.1",
"jest-preset-angular": "^14.1.0",
"prettier": "^3.0.0",
"rxjs": "~7.8.0",
"ts-node": "^10.9.1",
"typescript": "~5.4.2",
"zone.js": "~0.14.3"
}
}