forked from akashdathan/gm-palette
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
78 lines (78 loc) · 1.9 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
{
"name": "@davidegheri/gm-palette",
"version": "4.0.1",
"description": "Dominant color and palette using graphicsmagick.",
"main": "./dist/node/index.js",
"typings": "./dist/types/index.d.ts",
"module": "./dist/src/index.js",
"bin": {
"gm-palette": "./dist/node/bin/index.js"
},
"files": [
"dist"
],
"scripts": {
"test": "jest",
"test:coverage": "jest --coverage",
"test:coveralls": "jest --coverage --coverageReporters=text-lcov | coveralls",
"lint": "tslint -p tsconfig.json -c tslint.json",
"build:clean": "rimraf ./dist",
"build:es": "tsc -p tsconfig.es.json",
"build:node": "tsc -p tsconfig.node.json",
"build": "yarn build:clean && yarn build:node && yarn build:es",
"preversion": "yarn test && yarn lint",
"version": "yarn build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Davide-Gheri/gm-palette.git"
},
"keywords": [
"dominant color",
"colors",
"top colors",
"palette",
"image colors",
"gm colors",
"gm palette",
"graphicsmagick"
],
"contributors": [
"Akash Dathan",
"Davide Gheri"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/Davide-Gheri/gm-palette/issues"
},
"homepage": "https://github.com/Davide-Gheri/gm-palette#readme",
"dependencies": {
"commander": "^3.0.0",
"gm": "^1.23.1"
},
"devDependencies": {
"@types/gm": "^1.18.4",
"@types/jest": "^24.0.9",
"@types/lodash": "^4.14.144",
"@types/node": "^12.0.0",
"coveralls": "^3.0.3",
"jest": "^24.1.0",
"rimraf": "^3.0.0",
"ts-jest": "^24.0.0",
"ts-node": "^8.0.2",
"tslint": "^5.13.1",
"typescript": "^3.3.3333"
},
"jest": {
"moduleFileExtensions": [
"js",
"ts"
],
"rootDir": "src",
"testRegex": ".spec.ts$",
"transform": {
"^.+\\.(t|j)s$": "ts-jest"
},
"coverageDirectory": "../coverage"
}
}