-
Notifications
You must be signed in to change notification settings - Fork 64
/
package.json
79 lines (79 loc) · 2.79 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
{
"name": "ngx-image-zoom",
"version": "3.0.0",
"scripts": {
"build": "ng build ngx-image-zoom",
"build:release": "npm run lint && npm run prettier:check && npm run test:ci && ng build ngx-image-zoom --configuration production",
"build:watch": "ng build ngx-image-zoom --watch",
"ng": "ng",
"lint": "ng lint",
"prettier:check": "npx prettier --check .",
"prettier:fix": "npx prettier --write .",
"release": "npm run build:release && npm publish dist/",
"release:beta": "npm run build:release && npm publish dist/ --tag beta",
"start": "ng serve",
"test": "ng test",
"test:ci": "ng test --browsers=ChromeHeadless --watch=false"
},
"repository": {
"type": "git",
"url": "https://www.github.com/wittlock/ngx-image-zoom"
},
"author": {
"name": "Mathias Wittlock",
"email": "1336118+wittlock@users.noreply.github.com"
},
"keywords": [
"angular",
"angular component",
"image zoom"
],
"license": "MIT",
"bugs": {
"url": "https://www.github.com/wittlock/ngx-image-zoom/issues"
},
"dependencies": {
"tslib": "^2.5.3"
},
"devDependencies": {
"@angular-devkit/build-angular": "^15.1.4",
"@angular-eslint/builder": "15.2.1",
"@angular-eslint/eslint-plugin": "15.2.1",
"@angular-eslint/eslint-plugin-template": "15.2.1",
"@angular-eslint/schematics": "15.2.1",
"@angular-eslint/template-parser": "15.2.1",
"@angular/animations": "^15.1.3",
"@angular/cli": "^15.1.4",
"@angular/common": "^15.1.3",
"@angular/compiler": "^15.1.3",
"@angular/compiler-cli": "^15.1.3",
"@angular/core": "^15.1.3",
"@angular/forms": "^15.1.3",
"@angular/language-service": "^15.1.3",
"@angular/platform-browser": "^15.1.3",
"@angular/platform-browser-dynamic": "^15.1.3",
"@angular/router": "^15.1.3",
"@types/jasmine": "~4.3.1",
"@types/jasminewd2": "~2.0.10",
"@types/node": "^18.13.0",
"@typescript-eslint/eslint-plugin": "5.48.2",
"@typescript-eslint/parser": "5.48.2",
"codelyzer": "^6.0.2",
"eslint": "^8.33.0",
"eslint-config-prettier": "^8.8.0",
"jasmine-core": "~4.5.0",
"jasmine-spec-reporter": "~7.0.0",
"karma": "~6.4.1",
"karma-chrome-launcher": "~3.1.1",
"karma-coverage-istanbul-reporter": "~3.0.3",
"karma-jasmine": "~5.1.0",
"karma-jasmine-html-reporter": "^2.0.0",
"ng-packagr": "^15.1.1",
"prettier": "2.8.8",
"protractor": "~7.0.0",
"rxjs": "~7.8.0",
"ts-node": "~10.9.1",
"typescript": "~4.9.5",
"zone.js": "~0.12.0"
}
}