-
Notifications
You must be signed in to change notification settings - Fork 41
/
package.json
89 lines (89 loc) · 2.35 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
82
83
84
85
86
87
88
89
{
"name": "vanilla-picker",
"version": "2.12.3",
"description": "A simple, easy to use vanilla JS color picker with alpha selection.",
"keywords": [
"ux",
"ui",
"color",
"colour",
"picker",
"vanilla",
"vanilla-js",
"color picker",
"color-picker",
"colorpicker",
"rgb",
"rgba",
"hsl",
"hsla",
"hex",
"alpha"
],
"author": "Andreas Borgen (https://github.com/Sphinxxxx), Adam Brooks (https://github.com/dissimulate)",
"homepage": "https://vanilla-picker.js.org",
"license": "ISC",
"repository": {
"type": "git",
"url": "git+https://github.com/Sphinxxxx/vanilla-picker.git"
},
"bugs": {
"url": "https://github.com/Sphinxxxx/vanilla-picker/issues"
},
"main": "dist/vanilla-picker.js",
"unpkg": "dist/vanilla-picker.min.js",
"module": "dist/vanilla-picker.mjs",
"exports": {
".": {
"types": "./src/index.d.ts",
"require": "./dist/vanilla-picker.js",
"import": "./dist/vanilla-picker.mjs",
"default": "./dist/vanilla-picker.mjs"
},
"./csp": {
"types": "./src/index.d.ts",
"require": "./dist/vanilla-picker.csp.js",
"import": "./dist/vanilla-picker.csp.mjs",
"default": "./dist/vanilla-picker.csp.mjs"
},
"./dist/": "./dist/",
"./dist/*": "./dist/*"
},
"files": [
"src/",
"dist/"
],
"scripts": {
"prepublishOnly": "bash ./scripts/prepub.sh",
"postpublish": "bash ./scripts/postpub.sh",
"test": "echo \"Error: no test specified\" && exit 1"
},
"devDependencies": {
"autoprefixer": "^9.6.0",
"babel-core": "^6.26.3",
"babel-plugin-external-helpers": "^6.22.0",
"babel-preset-env": "^1.7.0",
"babel-register": "^6.26.0",
"gulp": "^4.0.2",
"gulp-file": "^0.4.0",
"gulp-header": "^2.0.7",
"gulp-jsdoc3": "^2.0.0",
"gulp-rename": "^1.4.0",
"gulp-replace": "^1.0.0",
"gulp-strip-comments": "^2.5.2",
"gulp-uglify": "^3.0.2",
"postcss-cli": "^6.1.2",
"pug": "^3.0.2",
"rollup": "^2.58.0",
"rollup-plugin-babel": "^3.0.7",
"rollup-plugin-cleanup": "^3.1.1",
"rollup-plugin-node-resolve": "^3.4.0",
"rollup-plugin-replace": "^2.2.0",
"sass": "^1.43.3"
},
"dependencies": {
"@sphinxxxx/color-conversion": "^2.2.2"
},
"browserslist": ">.1%, last 2 versions, Firefox ESR, not dead",
"typings": "src/index.d.ts"
}