forked from wKoza/ngx-upload
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·94 lines (94 loc) · 3.17 KB
/
Copy pathpackage.json
File metadata and controls
executable file
·94 lines (94 loc) · 3.17 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
{
"name": "@wkoza/ngx-upload",
"version": "11.0.0",
"description": "Upload module for Angular",
"sideEffects": false,
"ngPackage": {
"lib": {
"entryFile": "./src/index.ts"
}
},
"scripts": {
"clean": "rimraf dist",
"lint": "tslint --force \"src/**/*.ts\"",
"release:git": "git add package.json && git commit -m \"chore: bump version number\" && standard-version --first-release && git push --follow-tags origin master",
"release:npm": "npm run build && npm publish --access=public dist",
"release": "npm run clean && npm run test && npm run release:git && npm run release:npm",
"test": "karma start --single-run",
"test:watch": "karma start --auto-watch",
"build": "ng-packagr -p package.json",
"gh-pages": "git checkout gh-pages && git merge master --no-edit --no-ff && del-cli *.js *.js.map && npm run compodoc && git add . && git commit -m \"chore: build docs\" && git push && git checkout master",
"compodoc": "compodoc -p tsconfig-compodoc.json -d docs --disableCoverage --disablePrivateOrInternalSupport",
"codecov": "cat coverage/lcov.info | codecov"
},
"repository": {
"type": "git",
"url": "git+https://github.com/wKoza/ngx-upload.git"
},
"keywords": [
"angular 11",
"angular",
"upload"
],
"author": "William Koza <william.koza@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/wKoza/ngx-upload/issues"
},
"homepage": "https://github.com/wKoza/ngx-upload#readme",
"devDependencies": {
"@angular/common": "11.0.5",
"@angular/compiler": "11.0.5",
"@angular/compiler-cli": "11.0.5",
"@angular/core": "11.0.5",
"@angular/forms": "11.0.5",
"@angular/language-service": "11.0.5",
"@angular/platform-browser": "11.0.5",
"@angular/platform-browser-dynamic": "11.0.5",
"@compodoc/compodoc": "1.1.11",
"@types/html-webpack-plugin": "3.2.4",
"@types/jasmine": "3.5.12",
"@types/node": "12.12.6",
"@types/webpack": "4.41.21",
"codecov": "3.7.2",
"codelyzer": "6.0.0",
"commitizen": "4.1.2",
"concurrently": "5.2.0",
"core-js": "3.6.5",
"del-cli": "3.0.1",
"file-api": "0.10.4",
"fork-ts-checker-webpack-plugin": "0.2.10",
"html-webpack-plugin": "4.3.0",
"istanbul-instrumenter-loader": "3.0.1",
"jasmine-core": "3.6.0",
"jasmine-spec-reporter": "5.0.2",
"karma": "5.1.1",
"karma-chrome-launcher": "3.1.0",
"karma-coverage-istanbul-reporter": "3.0.3",
"karma-jasmine": "3.3.1",
"karma-mocha": "2.0.1",
"karma-mocha-reporter": "2.2.5",
"karma-sourcemap-loader": "0.3.7",
"karma-typescript": "5.0.3",
"karma-typescript-angular2-transform": "5.0.3",
"karma-webpack": "4.0.2",
"ng-packagr": "^10.0.3",
"reflect-metadata": "0.1.13",
"rxjs": "6.6.2",
"standard-version": "8.0.2",
"ts-loader": "8.0.2",
"ts-node": "8.10.2",
"tslint": "6.1.3",
"tslint-loader": "3.5.4",
"typescript": "~4.0.3",
"webpack": "4.44.1",
"webpack-cli": "3.3.12",
"zone.js": "0.10.3"
},
"peerDependencies": {
"@angular/common": ">=9.0.0 <12.0.0",
"@angular/core": ">=9.0.0 <12.0.0",
"rxjs": ">=6.0.0",
"@angular/forms": ">=9.0.0 <12.0.0"
}
}