-
Notifications
You must be signed in to change notification settings - Fork 142
/
package.json
71 lines (71 loc) · 2.16 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
{
"name": "ngx-color-picker",
"description": "Color picker widget for Angular",
"bugs": "https://github.com/zefoy/ngx-color-picker/issues",
"version": "17.0.0",
"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": "git@github.com: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": "devel@zef.fi"
}
}
},
"dependencies": {
"@angular/cdk": "^17.3.0",
"@angular/common": "^17.3.0",
"@angular/compiler": "^17.3.0",
"@angular/core": "^17.3.0",
"@angular/forms": "^17.3.0",
"@angular/platform-browser": "^17.3.0",
"@angular/platform-browser-dynamic": "^17.3.0",
"rxjs": "^7.8.0",
"tailwindcss": "^3.3.0",
"zone.js": "^0.14.0"
},
"devDependencies": {
"@angular-devkit/build-angular": "^17.3.0",
"@angular-eslint/builder": "^17.3.0",
"@angular-eslint/eslint-plugin": "^17.3.0",
"@angular-eslint/eslint-plugin-template": "^17.3.0",
"@angular-eslint/schematics": "^17.3.0",
"@angular-eslint/template-parser": "^17.3.0",
"@angular/cli": "^17.3.0",
"@angular/compiler-cli": "^17.3.0",
"@typescript-eslint/eslint-plugin": "^7.15.0",
"@typescript-eslint/parser": "^7.15.0",
"cpx": "^1.5.0",
"deploy-to-git": "^0.4.0",
"eslint": "^8.54.0",
"mkdirp": "^3.0.0",
"ng-packagr": "^17.3.0",
"rimraf": "^5.0.0",
"stylelint": "^16.6.0",
"stylelint-config-standard": "^36.0.0",
"stylelint-order": "^6.0.0",
"terser": "^5.31.0",
"typescript": "~5.4.0",
"watch": "^1.0.0"
}
}