This repository has been archived by the owner on Nov 4, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
110 lines (110 loc) · 3.73 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": "@lcgroup.core/api",
"version": "6.0.0",
"ngPackage": {
"lib": {
"entryFile": "src/index.ts"
}
},
"author": {
"name": "Sergey Romanchuk"
},
"maintainers": [
{
"email": "[email protected]",
"name": "Sergey Romanchuk"
}
],
"publishConfig": {
"access": "public"
},
"homepage": "https://github.com/LCGroupIT/lcgroup.core-api#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/LCGroupIT/lcgroup.core-api.git"
},
"keywords": [
"api",
"angular",
"http",
"HttpClient",
"Rest api"
],
"bugs": {
"url": "https://github.com/LCGroupIT/lcgroup.core/issues"
},
"license": "MIT",
"description": "Angular HttpClient simplifier",
"engines": {
"node": ">= 10.13.0"
},
"scripts": {
"karma": "npx karma",
"rimraf": "npx rimraf",
"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": "npm run rimraf -- coverage && npm run 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.1.0"
},
"peerDependencies": {
"@angular/common": ">=10.0.0 <12.0.0",
"@angular/core": ">=10.0.0 <12.0.0",
"rxjs": ">=6.5.3 <7.0.0"
},
"devDependencies": {
"@angular/common": "^11.0.0",
"@angular/compiler": "^11.0.0",
"@angular/compiler-cli": "^11.0.0",
"@angular/core": "^11.0.0",
"@angular/platform-browser": "^11.0.0",
"@angular/platform-browser-dynamic": "^11.0.0",
"@types/chai": "^4.1.7",
"@types/jasmine": "^3.3.13",
"chai": "^4.2.0",
"codelyzer": "^5.1.0",
"conventional-changelog-cli": "^2.0.21",
"conventional-github-releaser": "^3.1.4",
"coveralls": "^3.0.3",
"cpy-cli": "^2.0.0",
"es6-shim": "^0.35.5",
"istanbul-instrumenter-loader": "^3.0.1",
"jasmine": "^3.4.0",
"jasmine-core": "^3.4.0",
"karma": "~4.3.0",
"karma-chrome-launcher": "~3.1.0",
"karma-coverage": "^2.0.2",
"karma-jasmine": "~2.0.1",
"karma-sourcemap-loader": "^0.3.7",
"karma-spec-reporter": "^0.0.32",
"karma-webpack": "3.0.5",
"ng-packagr": "^10.0.0",
"np": "^6.2.3",
"rimraf": "^2.6.3",
"sinon": "^7.3.2",
"ts-helpers": "^1.1.2",
"ts-loader": "^6.0.2",
"tsickle": "^0.39.0",
"tslint": "^5.17.0",
"typedoc": "^0.17.8",
"typescript": "~4.0.0",
"webpack": "^4.43.0",
"zone.js": "~0.10.3"
}
}