This repository has been archived by the owner on Aug 27, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
67 lines (67 loc) · 1.82 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
{
"name": "ngx-jest-snapshot-serializer",
"version": "2.0.0",
"main": "index.js",
"description": "Snapshot testing for an Angular application",
"repository": "git@github.com:yurii-sorokin/ngx-jest-serializer.git",
"author": "Yurii Sorokin <fortyin@gmail.com>",
"license": "MIT",
"keywords": [
"angular",
"angular4",
"angular5",
"jest",
"snapshot"
],
"engines": {
"node": ">=8.9.0"
},
"scripts": {
"precommit": "run-p lint test build",
"commitmsg": "commitlint -e $GIT_PARAMS",
"prepublishOnly": "run-p lint test build",
"clean": "del lib",
"transpile": "tsc -d --outDir lib",
"copy-types": "copy src/**/*.d.ts lib",
"build": "run-s clean transpile copy-types",
"lint": "tslint -c tslint.json '{src,test}/**/*.ts'",
"test": "jest -c jest.config.json"
},
"devDependencies": {
"@angular/common": "^4.0.0",
"@angular/compiler": "^4.0.0",
"@angular/core": "^4.0.0",
"@angular/platform-browser": "^4.0.0",
"@angular/platform-browser-dynamic": "^4.0.0",
"@commitlint/cli": "^8.3.5",
"@commitlint/config-conventional": "^6.1.2",
"@types/jest": "^22.1.3",
"@types/node": "^9.4.6",
"@types/pretty-format": "^20.0.0",
"copy": "^0.3.1",
"core-js": "^2.5.3",
"del-cli": "^1.1.0",
"husky": "^0.14.3",
"jest": "^25.1.0",
"jest-zone-patch": "0.0.8",
"npm-run-all": "^4.1.2",
"rxjs": "^5.5.6",
"ts-jest": "^25.2.1",
"tslint": "^5.9.1",
"tslint-angular": "^1.1.1",
"typescript": "^2.7.2",
"zone.js": "^0.8.20"
},
"peerDependencies": {
"@angular/core": ">=4.0.0",
"jest": ">=22.0.0"
},
"dependencies": {
"escape-string-regexp": "^1.0.5",
"lodash.isnil": "^4.0.0",
"lodash.negate": "^3.0.2",
"lodash.omitby": "^4.6.0",
"lodash.uniq": "^4.5.0",
"tslib": "^1.9.0"
}
}