This repository has been archived by the owner on Jan 31, 2023. It is now read-only.
forked from zefoy/ngx-color-picker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
76 lines (76 loc) · 2.3 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
{
"name": "ngx-color-picker",
"description": "Color picker widget for Angular",
"bugs": "https://github.com/zefoy/ngx-color-picker/issues",
"version": "12.0.1",
"license": "MIT",
"private": true,
"scripts": {
"ng": "ng",
"lint": "ng lint",
"start": "ng serve app",
"build": "ng build lib",
"deploy": "deploy-to-git",
"prepare": "ng build lib --configuration production",
"publish": "npm publish ./dist/lib",
"predeploy": "rimraf ./dist/app && mkdirp ./dist/app"
},
"repository": {
"type": "git",
"url": "https://github.com/zefoy/ngx-color-picker.git"
},
"config": {
"deployToGit": {
"repository": "[email protected]:zefoy/ngx-color-picker.git",
"branch": "gh-pages",
"folder": "dist/app",
"script": "ng build app --configuration production -- --base-href=ngx-color-picker --delete-output-path=false",
"commit": "Publishing $npm_package_version",
"user": {
"name": "ZEF Devel",
"email": "[email protected]"
}
}
},
"dependencies": {
"@angular/cdk": "^13.2.1",
"@angular/common": "^13.2.1",
"@angular/compiler": "^13.2.1",
"@angular/core": "^13.2.1",
"@angular/flex-layout": "13.0.0-beta.38",
"@angular/forms": "^13.2.1",
"@angular/platform-browser": "^13.2.1",
"@angular/platform-browser-dynamic": "^13.2.1"
},
"devDependencies": {
"@angular-devkit/build-angular": "^13.2.2",
"@angular-eslint/builder": "13.0.1",
"@angular-eslint/eslint-plugin": "13.0.1",
"@angular-eslint/eslint-plugin-template": "13.0.1",
"@angular-eslint/schematics": "13.0.1",
"@angular-eslint/template-parser": "13.0.1",
"@angular/cli": "^13.2.2",
"@angular/compiler-cli": "^13.2.1",
"@types/node": "^17.0.15",
"@typescript-eslint/eslint-plugin": "5.3.0",
"@typescript-eslint/parser": "5.3.0",
"core-js": "^3.21.0",
"cpx": "^1.5.0",
"deploy-to-git": "^0.4.1",
"eslint": "^8.2.0",
"mkdirp": "^1.0.4",
"ng-packagr": "^13.2.1",
"rimraf": "^3.0.2",
"rxjs": "^7.5.2",
"stylelint": "^14.3.0",
"stylelint-config-standard": "^24.0.0",
"stylelint-order": "^5.0.0",
"terser": "^5.10.0",
"ts-node": "^10.4.0",
"tsickle": "^0.46.0",
"tslib": "^2.3.1",
"typescript": "~4.5.5",
"watch": "^1.0.2",
"zone.js": "^0.11.4"
}
}