-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
79 lines (79 loc) · 2.45 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
{
"name": "angular-page-visibility-app",
"version": "11.0.0",
"license": "MIT",
"scripts": {
"ng": "ng",
"prestart": "npm run build:lib",
"start": "ng serve",
"prebuild": "npm run build:lib",
"build": "ng build",
"build:lib": "ng build --prod angular-page-visibility-lib && cp *.md dist/angular-page-visibility",
"test": "ng test",
"lint": "ng lint",
"publish": "npm publish dist/angular-page-visibility",
"e2e": "ng e2e",
"release": "standard-version",
"release:major": "npm run release -- -t '' --release-as major",
"release:minor": "npm run release -- -t '' --release-as minor",
"release:patch": "npm run release -- -t '' --release-as patch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/olivierlsc/angular-page-visibility.git"
},
"author": "Olivier LIN-SI-CHENG",
"bugs": {
"url": "https://github.com/olivierlsc/angular-page-visibility/issues"
},
"homepage": "https://github.com/olivierlsc/angular-page-visibility#readme",
"private": true,
"dependencies": {
"@angular/animations": "^11.2.11",
"@angular/common": "^11.2.11",
"@angular/compiler": "^11.2.11",
"@angular/core": "^11.2.11",
"@angular/forms": "^11.2.11",
"@angular/http": "^7.2.12",
"@angular/platform-browser": "^11.2.11",
"@angular/platform-browser-dynamic": "^11.2.11",
"@angular/router": "^11.2.11",
"core-js": "2.6.5",
"rxjs": "^6.6.7",
"zone.js": "^0.10.3"
},
"devDependencies": {
"@angular-devkit/build-angular": "^0.901.4",
"@angular-devkit/build-ng-packagr": "^0.901.4",
"@angular/cli": "^11.2.10",
"@angular/compiler-cli": "^11.2.11",
"@angular/language-service": "^11.2.11",
"@types/jasmine": "~3.3.12",
"@types/jasminewd2": "~2.0.6",
"@types/node": "~11.13.2",
"codelyzer": "~5.0.0",
"husky": "^2.2.0",
"jasmine-core": "~3.4.0",
"jasmine-spec-reporter": "~4.2.1",
"karma": "~4.0.1",
"karma-chrome-launcher": "~2.2.0",
"karma-coverage-istanbul-reporter": "~2.0.5",
"karma-jasmine": "~2.0.1",
"karma-jasmine-html-reporter": "^1.4.0",
"ng-packagr": "^5.0.1",
"prettier": "1.16.4",
"pretty-quick": "^1.10.0",
"protractor": "~5.4.2",
"standard-version": "^8.0.1",
"ts-node": "~8.0.3",
"tsickle": "^0.34.3",
"tslib": "^1.11.1",
"tslint": "~5.15.0",
"typescript": "^4.1.5"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
}
}