forked from ngneat/spectator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
93 lines (93 loc) · 3.1 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
{
"name": "spectator-src",
"license": "MIT",
"description": "Angular tests made easy",
"scripts": {
"postinstall": "ngcc",
"ng": "ng",
"build": "ng build --prod && npm run build:schematics && npm run copy:schematics && npm run copy:docs && npm run copy:bin && npm run downlevel-dts",
"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 npm run test && npm run test:jest",
"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",
"downlevel-dts": "downlevel-dts ./dist/spectator ./dist/spectator/ts3.4",
"postbump": "npm run build",
"release": "cd projects/spectator && standard-version --infile ../../CHANGELOG.md"
},
"dependencies": {
"@testing-library/dom": "6.1.0",
"jquery": "3.5.0",
"replace-in-file": "^4.1.3",
"tslib": "^1.10.0"
},
"devDependencies": {
"@angular-builders/jest": "^8.0.4",
"@angular-devkit/build-angular": "~0.900.1",
"@angular-devkit/build-ng-packagr": "~0.900.1",
"@angular-devkit/schematics": "^9.0.1",
"@angular/animations": "~9.0.0",
"@angular/cli": "~9.0.1",
"@angular/common": "~9.0.0",
"@angular/compiler": "~9.0.0",
"@angular/compiler-cli": "~9.0.0",
"@angular/core": "~9.0.0",
"@angular/forms": "~9.0.0",
"@angular/language-service": "~9.0.0",
"@angular/platform-browser": "~9.0.0",
"@angular/platform-browser-dynamic": "~9.0.0",
"@angular/router": "~9.0.0",
"@commitlint/cli": "8.1.0",
"@commitlint/config-angular": "8.1.0",
"@commitlint/config-conventional": "8.1.0",
"@types/jasmine": "~3.5.3",
"@types/jest": "^24.0.15",
"@types/node": "^12.11.1",
"all-contributors-cli": "^4.11.1",
"codelyzer": "^5.1.2",
"core-js": "^2.5.4",
"cross-env": "^5.1.4",
"cz-conventional-changelog": "^2.1.0",
"downlevel-dts": "^0.5.0",
"git-cz": "^3.2.1",
"helpful-decorators": "^1.7.2",
"husky": "^0.14.3",
"jasmine-core": "~3.5.0",
"jasmine-spec-reporter": "~4.2.1",
"jest": "^24.8.0",
"karma": "~4.1.0",
"karma-chrome-launcher": "~2.2.0",
"karma-coverage-istanbul-reporter": "~2.0.1",
"karma-jasmine": "~3.1.1",
"karma-jasmine-html-reporter": "^1.4.0",
"lint-staged": "^7.0.2",
"ng-packagr": "^9.0.0",
"prettier": "^1.11.1",
"rxjs": "~6.5.4",
"standard-version": "^4.4.0",
"ts-node": "~7.0.0",
"tslint": "~5.15.0",
"typescript": "~3.7.5",
"zone.js": "~0.10.2"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"lint-staged": {
"*.ts": [
"prettier --write",
"git add"
]
}
}