-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.43 KB
/
Copy pathpackage.json
File metadata and controls
64 lines (64 loc) · 1.43 KB
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
{
"name": "colorpickup",
"version": "1.0.0",
"description": "ColorPickUp is a fast, grid-optimized, and zero-dependency color picker library. Features 16 UI styles, advanced themes, and WCAG accessibility validation.",
"license": "GPL-v3.0",
"author": {
"name": "Pro Bandey",
"url": "https://Pro-Bandey.github.io/"
},
"homepage": "https://github.com/MainRoute-Core/ColorPickUp#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/MainRoute-Core/ColorPickUp.git"
},
"bugs": {
"url": "https://github.com/MainRoute-Core/ColorPickUp/issues"
},
"keywords": [
"color",
"pickup",
"colorpickup",
"colorpicker",
"html",
"vanilla-js",
"ui",
"component",
"library",
"accessible"
],
"main": "dist/ColorPickUp.js",
"style": "dist/ColorPickUp.css",
"files": [
"dist",
"!dist/index.html",
"README.md",
"LICENSE"
],
"scripts": {
"build": "gulp build",
"watch": "gulp"
},
"devDependencies": {
"@babel/core": "^7.20.0",
"@babel/preset-env": "^7.20.0",
"@babel/register": "^7.18.0",
"gulp": "^4.0.2",
"gulp-babel": "^8.0.0",
"gulp-clean-css": "^4.3.0",
"gulp-rename": "^2.0.0",
"gulp-replace": "^1.1.3",
"gulp-uglify": "^3.0.2"
},
"browserslist": "> 0.25%, not dead",
"babel": {
"presets": [
[
"@babel/preset-env",
{
"loose": true
}
]
]
}
}