-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
45 lines (45 loc) · 986 Bytes
/
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
{
"name": "fast-average-color-node",
"version": "2.1.0",
"description": "A simple library that calculates the average color of images in Node.js.",
"main": "dist/index.js",
"keywords": [
"fast",
"average",
"color",
"colour"
],
"dependencies": {
"fast-average-color": "^7.0.1",
"sharp": "^0.29.2"
},
"files": [
"src",
"dist/*.js",
"dist/*.ts",
"README.md",
"LICENSE"
],
"devDependencies": {
"@types/jest": "^27.0.2",
"@types/sharp": "^0.29.2",
"jest": "^27.3.1",
"ts-jest": "^27.0.7",
"typescript": "^4.4.4"
},
"engines": {
"node": ">= 12"
},
"typings": "./dist/index.d.ts",
"scripts": {
"test": "jest --config ./jest.config.js .",
"build": "tsc -p tsconfig.json",
"prepare": "npm run build"
},
"author": {
"name": "Denis Seleznev",
"email": "hcodes@yandex.ru",
"url": "https://github.com/fast-average-color/fast-average-color-node"
},
"license": "MIT"
}