-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
54 lines (54 loc) · 1.46 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
{
"name": "histogram-canvas",
"version": "0.1.3",
"description": "Draw a photo histogram on a canvas",
"main": "lib/main.js",
"files": [
"lib",
"dist"
],
"scripts": {
"test": "ava test.js",
"build": "gulp",
"prepublish": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/stephentuso/histogram-canvas.git"
},
"keywords": [
"histogram",
"canvas"
],
"author": "stephentuso",
"license": "MIT",
"bugs": {
"url": "https://github.com/stephentuso/histogram-canvas/issues"
},
"homepage": "https://github.com/stephentuso/histogram-canvas#readme",
"devDependencies": {
"ava": "^0.19.1",
"babel-plugin-transform-es2015-arrow-functions": "^6.22.0",
"babel-plugin-transform-es2015-block-scoping": "^6.24.1",
"babel-plugin-transform-es2015-classes": "^6.24.1",
"babel-plugin-transform-es2015-parameters": "^6.24.1",
"browserify": "^14.3.0",
"canvas": "^1.6.5",
"del": "^2.2.2",
"eslint": "^3.19.0",
"eslint-config-standard": "^10.2.1",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-node": "^4.2.2",
"eslint-plugin-promise": "^3.5.0",
"eslint-plugin-standard": "^3.0.1",
"gulp": "^3.9.1",
"gulp-babel": "^6.1.2",
"gulp-derequire": "^2.1.0",
"gulp-load-plugins": "^1.5.0",
"gulp-rename": "^1.2.2",
"gulp-uglify": "^2.1.2",
"pump": "^1.0.2",
"run-sequence": "^1.2.2",
"vinyl-source-stream": "^1.1.0"
}
}