-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
55 lines (55 loc) · 1.92 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
{
"name": "logger",
"version": "0.0.0",
"scripts": {
"ng": "ng",
"jest": "jest",
"start": "ng serve",
"build:lib": "ng build logger",
"build:app": "ng build integration",
"test": "yarn jest --config ./jest.config.js",
"test:ci": "yarn jest --config ./jest.config.js --coverage",
"lint": "eslint --fix \"**/*.ts\"",
"format": "prettier --write \"**/*.{ts,html,css,scss,md,js,json}\"",
"coverage": "jest --config ./jest.app.config.js --coverage && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js && rm -rf ./coverage"
},
"husky": {
"hooks": {
"pre-commit": "npm run format"
}
},
"private": true,
"prettier": "@angular-ru/prettier-config",
"devDependencies": {
"@angular/animations": "8.2.14",
"@angular/common": "8.2.14",
"@angular/compiler": "8.2.14",
"@angular/core": "8.2.14",
"@angular/forms": "8.2.14",
"@angular/platform-browser": "8.2.14",
"@angular/platform-browser-dynamic": "8.2.14",
"@angular/router": "8.2.14",
"core-js": "3.6.5",
"devtools-detect": "3.0.0",
"lint-staged": "9.5.0",
"rxjs": "6.5.5",
"zone.js": "0.10.3",
"@angular-ru/jest-utils": "12.19.0",
"@angular-ru/eslint-config": "12.20.1",
"@angular-ru/prettier-config": "12.19.1",
"@angular-ru/tsconfig": "12.19.1",
"@angular-devkit/build-angular": "0.803.27",
"@angular-devkit/build-ng-packagr": "0.803.27",
"@angular/cli": "8.3.21",
"@angular/compiler-cli": "8.2.14",
"@angular/language-service": "8.2.14",
"@types/node": "14.0.13",
"coveralls": "3.1.0",
"husky": "2.7.0",
"ng-packagr": "9.1.5",
"ts-node": "8.10.2",
"tsickle": "0.38.1",
"tslib": "1.13.0",
"typescript": "3.8.3"
}
}