This repository has been archived by the owner on May 29, 2023. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
110 lines (110 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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
{
"name": "@ng-web-apis/universal",
"version": "2.1.0",
"scripts": {
"postinstall": "husky install",
"build": "ng build",
"postbuild": "node scripts/postbuild.js",
"test": "ng test",
"posttest": "node scripts/coveralls.js",
"lint": "eslint . --fix",
"typecheck": "tsc --noEmit --skipLibCheck",
"release": "standard-version",
"release:patch": "npm run release -- --release-as patch",
"release:minor": "npm run release -- --release-as minor",
"release:major": "npm run release -- --release-as major",
"publish": "npm run build && npm publish ./dist/universal"
},
"description": "A set of fallback for @ng-web-apis/common for Angular Universal",
"keywords": [
"angular",
"ng",
"window",
"api",
"web api",
"navigator",
"user agent",
"ssr",
"server side rendering",
"local storage"
],
"license": "MIT",
"author": {
"name": "Alex Inkin",
"email": "[email protected]"
},
"contributors": [
"Roman Sedov <[email protected]> (http://marsibarsi.me/)"
],
"repository": "https://github.com/ng-web-apis/universal",
"bugs": "https://github.com/ng-web-apis/universal/issues",
"homepage": "https://github.com/ng-web-apis/universal#README",
"schematics": "./schematics/collection.json",
"dependencies": {
"@angular/common": "12.2.15",
"@angular/compiler": "12.2.15",
"@angular/core": "12.2.15",
"@angular/platform-browser": "12.2.15",
"@angular/platform-browser-dynamic": "12.2.15",
"core-js": "3.20.3",
"rxjs": "7.5.2",
"tslib": "2.3.1",
"zone.js": "0.11.4"
},
"devDependencies": {
"@angular-devkit/build-angular": "12.2.15",
"@angular-devkit/core": "12.2.15",
"@angular/cli": "12.2.15",
"@angular/compiler-cli": "12.2.15",
"@angular/language-service": "12.2.15",
"@commitlint/cli": "^11.0.0",
"@commitlint/config-conventional": "^11.0.0",
"@ng-web-apis/common": "2.0.0",
"@tinkoff/eslint-config": "^1.22.0",
"@tinkoff/eslint-config-angular": "^1.23.0",
"@tinkoff/prettier-config": "^1.22.0",
"@types/jasmine": "3.10.3",
"@types/jasminewd2": "2.0.10",
"@types/node": "9.6.61",
"coveralls": "3.1.1",
"husky": "7.0.4",
"jasmine-core": "4.0.0",
"jasmine-spec-reporter": "7.0.0",
"karma": "6.3.11",
"karma-chrome-launcher": "3.1.0",
"karma-coverage-istanbul-reporter": "3.0.3",
"karma-jasmine": "4.0.1",
"karma-jasmine-html-reporter": "1.7.0",
"lint-staged": "12.2.1",
"ng-packagr": "12.2.6",
"prettier": "2.5.1",
"standard-version": "9.3.2",
"ts-node": "9.0.0",
"tslint": "6.1.3",
"typescript": "4.3.5"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged && npm run typecheck"
}
},
"lint-staged": {
"*.{js,ts,html,md,less,json}": [
"prettier --write",
"git add"
],
"*.{js,ts}": [
"eslint --fix",
"git add"
]
},
"standard-version": {
"scripts": {
"postbump": "node scripts/syncVersions.js && git add **/package.json"
}
},
"engines": {
"node": ">= 10",
"npm": ">= 3"
}
}