forked from wKoza/ngx-upload
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
92 lines (92 loc) · 3.11 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
{
"name": "@wkoza/ngx-upload",
"version": "8.1.1",
"description": "Upload module for Angular",
"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 6",
"angular",
"upload"
],
"author": "William Koza <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/wKoza/ngx-upload/issues"
},
"homepage": "https://github.com/wKoza/ngx-upload#readme",
"devDependencies": {
"@angular/common": "8.0.0",
"@angular/compiler": "8.0.0",
"@angular/compiler-cli": "8.0.0",
"@angular/core": "8.0.0",
"@angular/forms": "8.0.0",
"@angular/language-service": "8.0.0",
"@angular/platform-browser": "8.0.0",
"@angular/platform-browser-dynamic": "8.0.0",
"@compodoc/compodoc": "1.1.10",
"@types/html-webpack-plugin": "2.30.4",
"@types/jasmine": "2.8.16",
"@types/node": "7.10.7",
"@types/webpack": "2.2.16",
"codecov": "2.3.1",
"codelyzer": "5.1.0",
"commitizen": "2.10.1",
"concurrently": "3.6.1",
"core-js": "2.4.1",
"del-cli": "1.1.0",
"file-api": "0.10.4",
"fork-ts-checker-webpack-plugin": "0.2.10",
"html-webpack-plugin": "2.30.1",
"istanbul-instrumenter-loader": "2.0.0",
"jasmine-core": "2.5.2",
"jasmine-spec-reporter": "3.2.0",
"karma": "1.7.1",
"karma-chrome-launcher": "2.2.0",
"karma-coverage-istanbul-reporter": "1.4.3",
"karma-jasmine": "1.1.2",
"karma-mocha": "1.3.0",
"karma-mocha-reporter": "2.2.5",
"karma-sourcemap-loader": "0.3.7",
"karma-typescript": "3.0.13",
"karma-typescript-angular2-transform": "1.0.2",
"karma-webpack": "2.0.13",
"ng-packagr": "^5.4.3",
"reflect-metadata": "0.1.13",
"rxjs": "6.5.2",
"standard-version": "4.4.0",
"ts-loader": "2.3.7",
"ts-node": "3.3.0",
"tslint": "5.18.0",
"tslint-loader": "3.6.0",
"typescript": "3.4.5",
"webpack": "2.7.0",
"zone.js": "0.8.26"
},
"peerDependencies": {
"@angular/common": ">=8.0.0 <9.0.0",
"@angular/core": ">=8.0.0 <9.0.0",
"rxjs": ">=6.0.0",
"@angular/forms": ">=8.0.0 <9.0.0"
}
}