forked from hallysonh/ngx-imageviewer
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
103 lines (103 loc) · 3.01 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
{
"name": "ngx-imageviewer-app",
"version": "0.0.0-development",
"author": "Hallyson Almeida <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/hallysonh/ngx-imageviewer"
},
"homepage": "https://github.com/hallysonh/ngx-imageviewer#readme",
"scripts": {
"ng": "ng",
"start": "yarn build:lib && ng serve",
"test": "ng test",
"lint": "ng lint",
"e2e": "ng e2e",
"build": "yarn build:lib",
"build:lib": "ng build ngx-imageviewer --prod && cp README.md dist/ngx-imageviewer",
"build:docs": "ng build ngx-imageviewer-app --prod --build-optimizer --vendor-chunk --output-path docs --base-href=/ngx-imageviewer/",
"postbuild": "tar -C dist --overwrite -czf dist/ngx-imageviewer.tgz ngx-imageviewer",
"semantic-release": "semantic-release",
"travis-deploy-once": "travis-deploy-once",
"commit": "git-cz"
},
"dependencies": {
"@angular/animations": "^8.2.10",
"@angular/cdk": "^8.2.3",
"@angular/common": "^8.2.10",
"@angular/compiler": "^8.2.10",
"@angular/core": "^8.2.10",
"@angular/flex-layout": "^8.0.0-beta.27",
"@angular/forms": "^8.2.10",
"@angular/http": "^7.2.15",
"@angular/material": "^6.0.2",
"@angular/platform-browser": "^8.2.10",
"@angular/platform-browser-dynamic": "^8.2.10",
"@angular/platform-server": "^8.2.10",
"@angular/router": "^8.2.10",
"core-js": "^2.5.4",
"hammerjs": "^2.0.8",
"pdfjs-dist": "2.0.489",
"rxjs": "^6.0.0",
"showdown": "^1.8.6",
"zone.js": "^0.8.26"
},
"devDependencies": {
"@angular-devkit/build-angular": "~0.803.9",
"@angular-devkit/build-ng-packagr": "~0.803.9",
"@angular/cli": "~8.3.9",
"@angular/compiler-cli": "^8.2.10",
"@angular/language-service": "^8.2.10",
"@types/jasmine": "~2.8.6",
"@types/jasminewd2": "~2.0.3",
"@types/node": "~10.1.1",
"@types/showdown": "^1.7.3",
"codelyzer": "~4.3.0",
"commitizen": "^2.9.6",
"cp": "^0.2.0",
"cz-conventional-changelog": "^2.1.0",
"jasmine": "^3.1.0",
"jasmine-core": "~3.1.0",
"jasmine-spec-reporter": "~4.2.1",
"karma": "~2.0.2",
"karma-chrome-launcher": "~2.2.0",
"karma-coverage-istanbul-reporter": "~2.0.0",
"karma-jasmine": "~1.1.1",
"karma-jasmine-html-reporter": "^1.1.0",
"ng-packagr": "^3.0.0-rc.2",
"protractor": "~5.3.0",
"puppeteer": "^1.4.0",
"semantic-release": "^15.11.0",
"travis-deploy-once": "^5.0.9",
"ts-node": "^6.0.3",
"tsickle": ">=0.25.5",
"tslib": "^1.7.1",
"tslint": "~5.10.0",
"typescript": "^3.5.3"
},
"release": {
"publish": [
{
"path": "@semantic-release/npm",
"pkgRoot": "dist/ngx-imageviewer"
},
{
"path": "@semantic-release/github",
"assets": [
"dist/ngx-imageviewer.tgz"
]
}
]
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"greenkeeper": {
"ignore": [
"typescript"
]
}
}