-
Notifications
You must be signed in to change notification settings - Fork 108
/
package.json
81 lines (81 loc) · 2.25 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
{
"name": "node-vibrant",
"version": "3.1.5",
"description": "Extract prominent colors from an image. Supports both node and browser environment.",
"main": "lib/index.js",
"browser": "lib/browser.js",
"types": "lib/index.d.ts",
"directories": {
"example": "examples"
},
"dependencies": {
"@types/lodash": "^4.14.53",
"@types/node": "^10.11.7",
"@jimp/custom": "^0.16.1",
"@jimp/types": "^0.16.1",
"@jimp/plugin-resize": "^0.16.1",
"lodash": "^4.17.20",
"url": "^0.11.0"
},
"devDependencies": {
"@types/chai": "^4.0.5",
"@types/finalhandler": "0.0.33",
"@types/mocha": "^5.2.5",
"@types/serve-static": "^1.7.31",
"@types/table": "^4.0.1",
"chai": "^4.1.2",
"eslint-plugin-typescript": "^0.14.0",
"finalhandler": "^1.0.0",
"mocha": "^5.2.0",
"rimraf": "^2.6.1",
"serve-static": "^1.11.2",
"standardx": "^3.0.1",
"table": "^5.1.0",
"ts-loader": "^5.2.1",
"ts-node": "^7.0.1",
"typescript": "^3.6.3",
"typescript-eslint-parser": "^21.0.2",
"uglifyjs-webpack-plugin": "^2.0.1",
"webpack": "^4.20.2",
"webpack-cli": "^3.1.2",
"worker-loader": "^2.0.0"
},
"scripts": {
"clean": "npm run clean:browser && npm run clean:node",
"clean:browser": "rimraf dist",
"clean:node": "rimraf lib",
"lint": "standardx src/**/*.ts",
"build": "npm run build:browser && npm run build:node",
"build:browser": "webpack --config webpack.config.js",
"build:node": "tsc",
"test": "npm run test:node && npm run test:browser",
"test:node": "mocha --require ts-node/register src/test/**/*.spec.ts",
"test:browser": "npm run --prefix fixtures/browser test",
"sample:inspect": "npm run --prefix fixtures/sample start",
"sample:update": "npm run --prefix fixtures/sample update",
"prepublishOnly": "npm run lint && npm run clean && npm run build"
},
"standardx": {
"parser": "typescript-eslint-parser",
"plugins": [
"typescript"
]
},
"repository": {
"type": "git",
"url": "https://github.com/akfish/node-vibrant.git"
},
"keywords": [
"color",
"detection",
"varation",
"image",
"picture",
"canvas",
"vibrant",
"muted",
"colour"
],
"author": "akfish",
"license": "MIT"
}