-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
87 lines (87 loc) · 2.66 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
{
"name": "ng-popups",
"version": "9.0.0",
"description": "Alert, confirm and prompt dialogs for Angular",
"repository": {
"type": "git",
"url": "https://github.com/caroso1222/ng-popups"
},
"license": "MIT",
"scripts": {
"ng": "ng",
"start": "ng serve ng-popups-demo",
"build": "ng build --prod ng-popups-demo",
"test": "ng test ng-popups-demo",
"lint": "ng lint ng-popups-demo",
"build:lib": "ng build --prod ng-popups",
"copy-readme": "cpy 'README.md' 'projects/ng-popups'",
"sync-version": "sync-json -v --property version --source package.json projects/ng-popups/package.json",
"preversion": "rm -rf ./dist",
"version": "npm run sync-version && npm run build:lib && git add -A && git commit -m \"bump up\"",
"postversion": "git push && git push --tags"
},
"private": true,
"dependencies": {
"@angular/animations": "^9.1.12",
"@angular/cdk": "^9.2.4",
"@angular/common": "^9.1.12",
"@angular/compiler": "^9.1.12",
"@angular/core": "^9.1.12",
"@angular/forms": "^9.1.12",
"@angular/localize": "^9.1.12",
"@angular/platform-browser": "^9.1.12",
"@angular/platform-browser-dynamic": "^9.1.12",
"@angular/router": "^9.1.12",
"core-js": "^2.4.1",
"gulp-autoprefixer": "^4.1.0",
"rxjs": "^6.6.0",
"rxjs-compat": "^6.0.0-rc.0",
"tslib": "^1.9.0",
"web-animations-js": "^2.3.2",
"zone.js": "~0.10.3"
},
"devDependencies": {
"@angular-devkit/build-angular": "~0.901.11",
"@angular-devkit/build-ng-packagr": "~0.901.11",
"@angular/cli": "^9.1.11",
"@angular/compiler-cli": "^9.1.12",
"@angular/language-service": "^9.1.12",
"@types/jasmine": "~2.8.3",
"@types/jasminewd2": "~2.0.2",
"@types/node": "~6.0.60",
"codelyzer": "^6.0.0",
"copyfiles": "^2.3.0",
"cpy-cli": "^3.1.1",
"del": "^3.0.0",
"fs": "0.0.1-security",
"gulp": "^3.9.1",
"gulp-clean-css": "^3.9.2",
"gulp-htmlmin": "^4.0.0",
"gulp-if": "^2.0.2",
"gulp-replace": "^0.6.1",
"gulp-sass": "^3.1.0",
"jasmine-core": "~2.8.0",
"jasmine-spec-reporter": "~4.2.1",
"karma": "~2.0.0",
"karma-chrome-launcher": "~2.2.0",
"karma-cli": "~1.0.1",
"karma-coverage-istanbul-reporter": "^1.2.1",
"karma-jasmine": "~1.1.0",
"karma-jasmine-html-reporter": "^0.2.2",
"ng-packagr": "^9.0.0",
"path": "^0.12.7",
"protractor": "~5.1.2",
"rimraf": "^2.6.2",
"rollup": "^0.54.0",
"run-sequence": "^2.2.1",
"sorcery": "^0.10.0",
"sync-json": "^1.0.2",
"through2": "^2.0.3",
"ts-node": "~4.1.0",
"tslint": "~5.9.1",
"typescript": "~3.8.3"
},
"prettier": {
"singleQuote": true
}
}