-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
54 lines (54 loc) · 1.36 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
{
"name": "dominantcolors.js",
"version": "0.0.5",
"description": "extract dominant colors from image",
"main": "dist/dominantcolors.js",
"module": "dist/dominantcolors.mjs",
"jsnext:main": "dist/dominantcolors.mjs",
"umd:main": "dist/dominantcolors.umd.js",
"unpkg": "dist/dominantcolors.umd.js",
"browser": "dist/dominantcolors.umd.js",
"scripts": {
"build:no-min": "microbundle -f cjs,es --no-compress --sourcemap false",
"build:umd": "microbundle -f umd",
"build": "npm-run-all clean build:*",
"clean": "if [ -d dist ]; then rm dist/*; fi",
"dev": "microbundle watch",
"test": "ava-ts test/test.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hunnble/dominantcolors.js.git"
},
"keywords": [
"dominant",
"main",
"color",
"palette",
"image"
],
"author": "hunnble",
"license": "MIT",
"bugs": {
"url": "https://github.com/hunnble/dominantcolors.js/issues"
},
"homepage": "https://github.com/hunnble/dominantcolors.js#readme",
"devDependencies": {
"ava": "^2.2.0",
"ava-ts": "^0.25.2",
"husky": "^1.3.1",
"microbundle": "^0.11.0",
"npm-run-all": "^4.1.5",
"prettier": "1.16.4",
"pretty-quick": "^1.10.0",
"ts-node": "^8.3.0"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
},
"files": [
"dist"
]
}