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 2
/
package.json
113 lines (113 loc) · 3.83 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
111
112
113
{
"name": "@ng-web-apis/mutation-observer",
"version": "2.0.0",
"description": "A library for declarative use of Mutation Observer API with Angular",
"keywords": [
"angular",
"ng",
"mutation",
"observer"
],
"homepage": "https://github.com/ng-web-apis/mutation-observer#README",
"bugs": "https://github.com/ng-web-apis/mutation-observer/issues",
"repository": "https://github.com/ng-web-apis/mutation-observer",
"license": "MIT",
"author": {
"name": "Alexander Inkin",
"email": "[email protected]"
},
"contributors": [
"Roman Sedov <[email protected]>"
],
"scripts": {
"postinstall": "husky install",
"ng": "ng",
"start": "ng serve",
"start:ssr": "ng run demo:serve-ssr",
"serve:ssr": "node dist/demo/server/main.js",
"build:ssr": "ng build && ng run demo:server",
"prerender": "ng run demo:prerender",
"build": "ng build",
"postbuild": "node scripts/postbuild.js",
"test": "ng test",
"stylelint": "stylelint '**/*.{less,css}'",
"lint": "eslint --cache --cache-location node_modules/.cache/eslint",
"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/mutation-observer"
},
"lint-staged": {
"*.{js,ts,html,md,less,json}": [
"npm run lint -- --fix",
"prettier --write",
"git add"
],
"*.less": [
"stylelint --fix",
"git add"
]
},
"dependencies": {
"@angular/common": "12.2.16",
"@angular/compiler": "12.2.16",
"@angular/core": "12.2.16",
"@angular/forms": "12.2.16",
"@angular/platform-browser": "12.2.16",
"@angular/platform-browser-dynamic": "12.2.16",
"@angular/platform-server": "12.2.16",
"@angular/router": "12.2.16",
"@ng-web-apis/common": "^2.0.0",
"@ng-web-apis/universal": "^2.0.0",
"@nguniversal/express-engine": "12.1.3",
"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.16",
"@angular-devkit/core": "12.2.16",
"@angular/cli": "12.2.16",
"@angular/compiler-cli": "12.2.16",
"@angular/language-service": "12.2.16",
"@commitlint/cli": "^11.0.0",
"@commitlint/config-conventional": "^11.0.0",
"@nguniversal/builders": "12.1.3",
"@tinkoff/eslint-config": "1.36.1",
"@tinkoff/eslint-config-angular": "1.36.1",
"@tinkoff/prettier-config": "1.32.1",
"@types/estree": "1.0.0",
"@types/express": "4.17.13",
"@types/jasmine": "3.10.3",
"@types/jasminewd2": "2.0.10",
"@types/node": "18.0.4",
"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"
},
"engines": {
"node": ">= 10",
"npm": ">= 3"
},
"standard-version": {
"scripts": {
"postbump": "node scripts/syncVersions.js && git add **/package.json"
}
}
}