forked from Vibrant-Colors/node-vibrant
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
72 lines (72 loc) · 2.03 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
{
"name": "node-vibrant",
"version": "3.0.0",
"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": "^8.0.53",
"jimp": "^0.2.27",
"lodash": "^4.17.4",
"url": "^0.11.0"
},
"devDependencies": {
"@types/chai": "^4.0.5",
"@types/finalhandler": "0.0.32",
"@types/mocha": "^2.2.39",
"@types/serve-static": "^1.7.31",
"@types/table": "^4.0.1",
"chai": "^4.1.2",
"finalhandler": "^1.0.0",
"karma": "^1.5.0",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^2.0.0",
"karma-commonjs": "^1.0.0",
"karma-firefox-launcher": "^1.0.0",
"karma-mocha": "^1.3.0",
"karma-webpack": "^2.0.2",
"mocha": "^4.0.1",
"rimraf": "^2.6.1",
"serve-static": "^1.11.2",
"table": "^4.0.1",
"ts-loader": "^3.1.1",
"typescript": "^2.6.1",
"webpack": "^3.8.1",
"worker-loader": "^1.1.0"
},
"scripts": {
"clean": "npm run clean:browser && npm run clean:node",
"clean:browser": "./node_modules/.bin/rimraf dist",
"clean:node": "./node_modules/.bin/rimraf lib",
"build": "npm run build:browser && npm run build:node",
"build:browser": "./node_modules/.bin/webpack --config webpack.config.js",
"build:node": "./node_modules/.bin/tsc",
"pretest": "npm run clean && npm run build",
"test": "npm run test:node && npm run test:browser",
"test:node": "./node_modules/.bin/mocha lib/test/**/*.spec.js",
"test:browser": "./node_modules/.bin/karma start karma.conf.js",
"prepublish": "npm run clean && npm run build"
},
"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"
}