This repository was archived by the owner on Feb 26, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
110 lines (110 loc) · 3.77 KB
/
package.json
File metadata and controls
110 lines (110 loc) · 3.77 KB
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": "angular-router-meta",
"version": "2.0.1",
"ngPackage": {
"lib": {
"entryFile": "src/index.ts"
}
},
"author": {
"name": "Alexander Semenov"
},
"maintainers": [
{
"email": "alex.semenov.web@mail.ru",
"name": "Alexander Semenov"
}
],
"homepage": "https://github.com/LCGroupIT/angular-router-meta#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/LCGroupIT/angular-router-meta.git"
},
"keywords": [
"angular",
"router",
"meta",
"seo"
],
"bugs": {
"url": "https://github.com/LCGroupIT/angular-router-meta/issues"
},
"license": "MIT",
"description": "Angular 10+ meta helper",
"engines": {
"node": ">= 10.13.0"
},
"scripts": {
"karma": "npx karma",
"rimraf": "npx rimraf",
"ngc": "npx ngc",
"cpy": "npx cpy",
"build": "npx ng-packagr -p package.json",
"clean": "npm run clean:build && npm run clean:tests",
"clean:build": "npm run rimraf -- dist build",
"clean:tests": "npx rimraf -- coverage && npx rimraf tests/**/*.+{js,js.map,d.ts,metadata.json}",
"copy:assets": "npm run cpy -- CHANGELOG.md dist",
"conventional-changelog": "conventional-changelog",
"changelog": "npm run conventional-changelog -- -p angular -i CHANGELOG.md -s",
"changelog:add": "git add --force CHANGELOG.md package.json",
"changelog:commit": "git commit -m \"Updated CHANGELOG.md\"",
"lint": "npm run lint-ts && npm run lint-js && npm run lint-css",
"lint-css": "stylelint './src/**/*.css'",
"lint-ts": "tslint './src/**/*.ts'",
"lint-js": "eslint '**/*.js' --ignore-path .gitignore",
"test": "npm run clean:tests && karma start karma.conf.js",
"test:watch": "npm run clean:tests && karma start karma.conf.debug.js",
"version": "npx conventional-changelog -p angular -i CHANGELOG.md -s -r && npm run build && npm run copy:assets && npm run changelog:add && npm run changelog:commit",
"release": "npx np --contents=dist"
},
"dependencies": {
"tslib": "^2.0.0"
},
"peerDependencies": {
"@angular/common": ">=10.0.0 <11.0.0",
"@angular/core": ">=10.0.0 <11.0.0",
"rxjs": ">=6.6.0 <7.0.0"
},
"devDependencies": {
"@angular/cli": "10.0.1",
"@angular/common": "10.0.2",
"@angular/compiler": "10.0.2",
"@angular/compiler-cli": "10.0.2",
"@angular/core": "10.0.2",
"@angular/platform-browser": "10.0.2",
"@angular/platform-browser-dynamic": "10.0.2",
"@angular/router": "10.0.2",
"@types/chai": "^4.1.4",
"@types/i18next": "^8.4.2",
"@types/jasmine": "^2.8.8",
"chai": "^4.1.2",
"codelyzer": "^4.4.2",
"conventional-changelog-cli": "^2.0.1",
"conventional-github-releaser": "^3.1.2",
"coveralls": "^3.0.2",
"cpy-cli": "^1.0.1",
"es6-shim": "^0.35.3",
"istanbul-instrumenter-loader": "^3.0.1",
"jasmine": "^3.3.0",
"jasmine-core": "^3.3.0",
"karma": "4.4.1",
"karma-chrome-launcher": "^3.1.0",
"karma-coverage": "^2.0.1",
"karma-jasmine": "^3.1.1",
"karma-sourcemap-loader": "^0.3.7",
"karma-spec-reporter": "^0.0.32",
"karma-webpack": "^4.0.2",
"ng-packagr": "^10.0.0",
"np": "^6.2.3",
"rimraf": "3.0.0",
"rxjs": "^6.6.0",
"sinon": "^7.1.1",
"ts-helpers": "^1.1.2",
"ts-loader": "^6.2.1",
"tslint": "^6.0.0",
"typedoc": "^0.14.2",
"typescript": "^3.9.6",
"webpack": "^4.26.0",
"zone.js": "^0.10.2"
}
}