-
Notifications
You must be signed in to change notification settings - Fork 43
/
Copy pathpackage.json
47 lines (47 loc) · 1.23 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
{
"name": "huebee",
"version": "2.1.1",
"description": "1-click color picker",
"main": "huebee.js",
"scripts": {
"test": "npm run lint && node test/",
"lint": "npx eslint . && node bin/lint-json.js",
"lintFix": "npx eslint . --fix",
"dist": "rm -rf dist/ && mkdir -p dist && npm run bundle && npm run uglify && cp huebee.css dist/huebee.css",
"bundle": "node bin/bundle.js",
"uglify": "npx uglifyjs dist/huebee.pkgd.js -o dist/huebee.pkgd.min.js --mangle --comments /^!/",
"version": "node bin/version && npm run dist && git add -A . dist"
},
"dependencies": {
"ev-emitter": "^1.1.1",
"unipointer": "^2.3.0"
},
"devDependencies": {
"clean-css": "^4.2.3",
"eslint": "^7.0.0",
"eslint-plugin-metafizzy": "^1.2.1",
"jshint": "^2.11.0",
"m.test": "0.0.58",
"puppeteer": "^2.1.1",
"uglify-js": "^3.8.1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/metafizzy/huebee.git"
},
"keywords": [
"color",
"picker",
"ui",
"dom"
],
"author": "David DeSandro",
"license": "MIT",
"bugs": {
"url": "https://github.com/metafizzy/huebee/issues"
},
"homepage": "https://huebee.buzz",
"directories": {
"test": "test"
}
}