-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
81 lines (81 loc) · 2.5 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
{
"name": "@yaireo/color-picker",
"version": "0.13.1",
"homepage": "https://yaireo.github.io/color-picker",
"description": "Lightweight javascript color picker",
"keywords": [
"color",
"colors",
"picker",
"javascript",
"component",
"lightweight"
],
"license": "MIT",
"browserslist": [
">3% and ie 11",
"not dead",
"not ie < 11",
"not IE_Mob 11",
"not op_mini all"
],
"publishConfig": {
"access": "public"
},
"engines": {
"node": "> 18"
},
"type": "module",
"scripts": {
"start": "concurrently \"npm:build:dev\" \"npm:watch:sass\"",
"_prepare": "npm run build",
"build:dev": "npm run clean && npm run bundle:dev",
"build:prod": "npm run clean && npm run bundle:prod && npm run build:sass",
"bundle:dev": "rollup -c rollup.config.dev.js -w",
"bundle:prod": "rollup -c rollup.config.prod.js",
"build:sass": "sass --style=compressed src/styles/styles.scss dist/styles.css",
"watch:sass": "npm run build:sass -- --watch",
"clean": "rm -rf dist && npm run makedir",
"makedir": "mkdirp dist",
"push": "git push origin",
"push:tags": "git push origin --tags",
"test": "jest",
"header": "headr color-picker.js -o=color-picker.js --version --homepage",
"version": "npm run build:prod && npm run header && git add .",
"prepublishOnly": "pkg-ok"
},
"author": {
"name": "Yair Even-Or",
"email": "[email protected]"
},
"main": "./dist/color-picker.es.js",
"module": "./dist/color-picker.es.js",
"files": [
"./dist"
],
"repository": {
"type": "git",
"url": "git+https://github.com/yairEO/color-picker.git"
},
"bugs": {
"url": "https://github.com/yaireo/color-picker/issues"
},
"devDependencies": {
"@babel/core": "7.23.9",
"@babel/preset-env": "7.23.9",
"@rollup/plugin-babel": "6.0.4",
"@rollup/plugin-commonjs": "25.0.7",
"@rollup/plugin-node-resolve": "15.2.3",
"@rollup/plugin-terser": "0.4.4",
"concurrently": "8.2.2",
"headr": "0.0.4",
"mkdirp": "3.0.1",
"rimraf": "5.0.5",
"rollup": "4.9.6",
"rollup-plugin-cleanup": "3.2.1",
"rollup-plugin-livereload": "2.0.5",
"rollup-plugin-scss": "4.0.0",
"rollup-plugin-serve": "2.0.2",
"sass": "1.70.0"
}
}