forked from mdbassit/Coloris
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 716 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 716 Bytes
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
{
"name": "Coloris",
"version": "0.23.0",
"description": "A lightweight and elegant color picker.",
"author": "Momo Bassit",
"license": "MIT",
"main": "dist/coloris.js",
"devDependencies": {
"@babel/core": "^7.15.5",
"@babel/preset-env": "^7.15.6",
"@babel/register": "^7.15.3",
"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"
},
"scripts": {
"build": "gulp build",
"start": "gulp"
},
"browserslist": "> 0.25%, not dead",
"babel": {
"presets": [
[
"@babel/preset-env",
{
"loose": true
}
]
]
}
}