forked from ngneat/spectator
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
100 lines (100 loc) · 3.34 KB
/
package.json
File metadata and controls
100 lines (100 loc) · 3.34 KB
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
97
98
99
100
{
"name": "spectator-src",
"license": "MIT",
"description": "Angular tests made easy",
"private": true,
"workspaces": [
"projects/*"
],
"engines": {
"npm": "please-use-yarn",
"yarn": ">= 1.22.0"
},
"scripts": {
"postinstall": "ngcc",
"ng": "ng",
"build": "ng build --configuration production && yarn build:schematics && yarn copy:schematics && yarn copy:docs && yarn copy:bin",
"build:schematics": "tsc -p projects/spectator/schematics/tsconfig.json",
"test": "ng test",
"test:jest": "ng run spectator:test-jest",
"test:ci": "cross-env NODE_ENV=build yarn test && yarn test:jest --silent",
"lint": "ng lint",
"format": "prettier --write \"{projects,src}/**/*.ts\"",
"commit": "git-cz",
"commitmsg": "commitlint -e $GIT_PARAMS",
"precommit": "lint-staged",
"contributors:add": "all-contributors add",
"contributors:generate": "all-contributors generate",
"copy:bin": "cp migrate.js dist/spectator",
"copy:docs": "cp *.md dist/spectator",
"copy:schematics": "cp -r projects/spectator/schematics/src/ dist/spectator/schematics",
"postbump": "yarn build",
"release": "cd projects/spectator && standard-version --infile ../../CHANGELOG.md",
"release:dry": "cd projects/spectator && standard-version --infile ../../CHANGELOG.md --dry-run"
},
"devDependencies": {
"@angular-builders/jest": "13.0.0",
"@angular-devkit/build-angular": "^13.0.3",
"@angular-devkit/schematics": "^13.0.3",
"@angular-eslint/builder": "13.0.1",
"@angular-eslint/eslint-plugin": "13.0.1",
"@angular-eslint/eslint-plugin-template": "13.0.1",
"@angular-eslint/schematics": "13.0.1",
"@angular-eslint/template-parser": "13.0.1",
"@angular/animations": "^13.0.2",
"@angular/cdk": "^13.0.2",
"@angular/cli": "^13.0.3",
"@angular/common": "^13.0.2",
"@angular/compiler": "^13.0.2",
"@angular/compiler-cli": "^13.0.2",
"@angular/core": "^13.0.2",
"@angular/forms": "^13.0.2",
"@angular/language-service": "^13.0.2",
"@angular/platform-browser": "^13.0.2",
"@angular/platform-browser-dynamic": "^13.0.2",
"@angular/router": "13.0.2",
"@commitlint/cli": "12.0.1",
"@commitlint/config-angular": "12.0.1",
"@commitlint/config-conventional": "12.0.1",
"@types/jasmine": "3.8.1",
"@types/jest": "26.0.24",
"@types/node": "16.3.1",
"@typescript-eslint/eslint-plugin": "5.3.0",
"@typescript-eslint/parser": "5.3.0",
"all-contributors-cli": "^6.19.0",
"core-js": "^3.9.1",
"cross-env": "^5.1.4",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.2.0",
"git-cz": "^4.7.6",
"helpful-decorators": "^2.1.0",
"husky": "^4.3.8",
"jasmine-core": "3.8.0",
"jasmine-spec-reporter": "7.0.0",
"jest": "27.0.6",
"karma": "6.3.4",
"karma-chrome-launcher": "3.1.0",
"karma-coverage-istanbul-reporter": "3.0.3",
"karma-jasmine": "4.0.1",
"karma-jasmine-html-reporter": "1.7.0",
"lint-staged": "^10.5.3",
"ng-packagr": "13.0.6",
"prettier": "2.3.2",
"rxjs": "6.6.3",
"standard-version": "^9.1.0",
"ts-node": "10.1.0",
"typescript": "4.4.4",
"zone.js": "0.11.4"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"lint-staged": {
"*.ts": [
"prettier --write",
"git add"
]
}
}