generated from ngworker/lumberjack-custom-driver
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
95 lines (95 loc) · 3.44 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
{
"name": "@ngworker/lumberjack-applicationinsights-driver",
"version": "1.0.1",
"scripts": {
"ng": "ng",
"start": "ng serve lumberjack-app",
"build": "ng build lumberjack-app --prod",
"test": "ng test lumberjack-app",
"test:ci": "npm run test -- --configuration=ci",
"lint": "ng lint",
"e2e": "ng e2e lumberjack-app-e2e",
"contributors:add": "all-contributors add",
"hooks:pre-commit": "node hooks/pre-commit.js",
"commit": "git-cz",
"release:first": "npm run release -- --first-release",
"build:lib": "ng build ngworker-lumberjack-applicationinsights-driver --prod && node tools/copy-readme.js",
"test:lib": "ng test ngworker-lumberjack-applicationinsights-driver",
"test:lib:ci": "npm run test:lib -- --configuration=ci",
"test:internal": "ng test internal-test-util",
"test:internal:ci": "ng test internal-test-util --configuration=ci",
"release": "cd libs/ngworker/lumberjack-applicationinsights-driver && standard-version --infile ../../../CHANGELOG.md",
"publish": "cd dist/ngworker/lumberjack-applicationinsights-driver && npm publish",
"ci": "npm install && npm run lint && npm run build:lib && npm run test:internal:ci && npm run test:lib:ci && npm run build && npm run test:ci && npm run e2e",
"format": "npx prettier --config prettier.config.js --write \"**/*.*\" \"!dist/**\" \"!yarn.lock\" \"!package-lock.json\"",
"delete-path-alias": "node tools/delete-path-alias.js"
},
"private": true,
"dependencies": {
"@angular/animations": "~11.1.0",
"@angular/common": "~11.1.0",
"@angular/compiler": "~11.1.0",
"@angular/core": "~11.1.0",
"@angular/forms": "~11.1.0",
"@angular/platform-browser": "~11.1.0",
"@angular/platform-browser-dynamic": "~11.1.0",
"@angular/router": "~11.1.0",
"@microsoft/applicationinsights-web": "^2.5.11",
"@ngworker/lumberjack": "^2.0.0 || >=2.0.0-rc.0",
"rxjs": "~6.6.3",
"tslib": "^2.0.3",
"zone.js": "~0.11.3"
},
"devDependencies": {
"@angular-devkit/build-angular": "~0.1101.0",
"@angular-devkit/build-ng-packagr": "~0.1002.0",
"@angular/cli": "~11.1.0",
"@angular/compiler-cli": "~11.1.0",
"@commitlint/cli": "11.0.0",
"@commitlint/config-angular": "^11.0.0",
"@commitlint/config-conventional": "^11.0.0",
"@types/jasmine": "~3.6.3",
"@types/node": "^12.19.15",
"all-contributors-cli": "^6.19.0",
"codelyzer": "^6.0.1",
"copy": "~0.3.2",
"git-cz": "^4.7.6",
"husky": "^4.3.8",
"jasmine-core": "~3.6.0",
"jasmine-spec-reporter": "~6.0.0",
"json": "^10.0.0",
"karma": "~6.0.1",
"karma-chrome-launcher": "~3.1.0",
"karma-coverage": "~2.0.3",
"karma-jasmine": "~4.0.1",
"karma-jasmine-html-reporter": "^1.5.4",
"lint-staged": "^10.5.3",
"ng-packagr": "^11.1.2",
"prettier": "^2.2.1",
"protractor": "~7.0.0",
"standard-version": "^9.1.0",
"ts-node": "~8.3.0",
"tslint": "~6.1.3",
"tslint-config-prettier": "^1.18.0",
"tslint-plugin-prettier": "^2.3.0",
"typescript": "~4.1.3"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"lint-staged": {
"*.{js,json,css,scss,ts,html,component.html}": [
"prettier --write",
"git add"
]
},
"husky": {
"hooks": {
"commit-msg": "commitlint -e $HUSKY_GIT_PARAMS",
"pre-commit": "npm run hooks:pre-commit && lint-staged && npm run lint",
"pre-push": "npm run test:lib:ci"
}
}
}