-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
50 lines (50 loc) · 1.35 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
{
"name": "coex",
"version": "1.0.0",
"description": "Image color extraction tool for the browser",
"main": "lib/coex.js",
"jsnext:main": "src/Coex.js",
"directories": {
"example": "example"
},
"scripts": {
"lint": "eslint '{*.js,test/**/*.js}' --ignore-pattern=test/coverage",
"test": "WEBPACK_ENV=test webpack && open ./test/testrunner.html",
"build": "WEBPACK_ENV=build webpack",
"dev": "WEBPACK_ENV=dev webpack --progress --colors --watch"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]:marcelombc/coex.git"
},
"keywords": [
"image",
"color",
"extract",
"browser"
],
"author": "Marcelo Conceição <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/marcelombc/coex/issues"
},
"homepage": "https://github.com/marcelombc/coex#readme",
"devDependencies": {
"@satazor/eslint-config": "^3.1.1",
"babel": "^6.5.2",
"babel-core": "^6.18.0",
"babel-eslint": "^7.1.0",
"babel-loader": "^6.2.7",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-preset-es2015": "^6.18.0",
"babel-preset-stage-2": "^6.18.0",
"chai": "^3.5.0",
"eslint": "^3.8.1",
"eslint-loader": "^1.6.0",
"jquery": "^3.1.1",
"mocha": "^3.1.2",
"mocha-loader": "^1.0.0",
"webpack": "^1.13.3",
"worker-loader": "^0.7.1"
}
}