forked from thymikee/jest-preset-angular
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
106 lines (106 loc) · 3.32 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
97
98
99
100
101
102
103
104
105
106
{
"name": "jest-preset-angular",
"version": "9.0.2",
"description": "Jest preset configuration for Angular projects",
"license": "MIT",
"main": "build/index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/thymikee/jest-preset-angular.git"
},
"bugs": {
"url": "https://github.com/thymikee/jest-preset-angular/issues"
},
"homepage": "https://thymikee.github.io/jest-preset-angular",
"author": "Michał Pierzchała <[email protected]>",
"contributors": [
"Ahn <[email protected]> (https://github.com/ahnpnl)",
"Thomas <[email protected]> (https://github.com/wtho)"
],
"keywords": [
"jest",
"typescript",
"angular",
"testing"
],
"scripts": {
"prepare": "yarn build",
"prebuild": "node scripts/clean.js",
"build": "tsc -p tsconfig.build.json",
"lint": "eslint --ext .js,.ts .",
"lint:fix": "eslint --fix --ext .js,.ts .",
"lint:prettier": "prettier '**/*.{yml,yaml}' 'website/**/*.{css,js,md}' 'README.md' --write --ignore-path .gitignore",
"lint:prettier-ci": "prettier '**/*.{yml,yaml}' 'website/**/*.{css,js,md}' 'README.md' --check --ignore-path .gitignore",
"test": "jest",
"test:examples": "node scripts/test-examples.js",
"doc": "cd website && yarn start",
"doc:build": "cd website && yarn build",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s -r 1",
"prepublishOnly": "pinst --disable",
"postpublish": "pinst --enable",
"update-examples": "node scripts/upgrade-examples-deps.js"
},
"dependencies": {
"jest-environment-jsdom": "^27.0.0",
"pretty-format": "^27.0.0",
"ts-jest": "^27.0.0"
},
"peerDependencies": {
"@angular-devkit/build-angular": ">=0.901.12",
"@angular/core": ">=9.0.0",
"jest": "^27.0.0"
},
"optionalDependencies": {
"webpack": "5.36.2"
},
"devDependencies": {
"@angular-devkit/build-angular": "^0.1102.11",
"@angular/animations": "^11.2.12",
"@angular/common": "^11.2.12",
"@angular/compiler": "^11.2.12",
"@angular/compiler-cli": "^11.2.12",
"@angular/core": "^11.2.12",
"@angular/platform-browser": "^11.2.12",
"@angular/platform-browser-dynamic": "^11.2.12",
"@commitlint/cli": "^12.1.1",
"@commitlint/config-angular": "^12.1.1",
"@jest/globals": "^27.0.1",
"@jest/transform": "^27.0.1",
"@jest/types": "^27.0.1",
"@types/jest": "^26.0.23",
"@types/node": "^14.14.44",
"@types/semver": "^7.3.5",
"@typescript-eslint/eslint-plugin": "^4.22.1",
"@typescript-eslint/parser": "^4.22.1",
"conventional-changelog-cli": "^2.1.1",
"eslint": "^7.25.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jest": "^24.3.6",
"eslint-plugin-jsdoc": "^33.1.0",
"eslint-plugin-prefer-arrow": "^1.2.3",
"eslint-plugin-prettier": "^3.4.0",
"execa": "^5.0.0",
"glob": "^7.1.6",
"glob-gitignore": "^1.0.14",
"husky": "^6.0.0",
"jest": "^27.0.1",
"jest-snapshot-serializer-raw": "^1.2.0",
"lint-staged": "^10.5.4",
"pinst": "^2.1.6",
"prettier": "^2.2.1",
"rxjs": "^6.6.7",
"tslib": "^2.2.0",
"typescript": "~4.1.5",
"zone.js": "^0.11.4"
},
"lint-staged": {
"*.{ts,js}": [
"eslint --fix",
"git add"
]
},
"engines": {
"node": "^12.13.0 || ^14.15.0 || >=15.0.0"
}
}