-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
39 lines (39 loc) · 867 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
{
"name": "captchar",
"version": "0.2.0",
"description": "Generate captcha image. Written in Node.js.",
"main": "index.js",
"repository": {
"type": "git",
"url": "https://github.com/chrisyip/node-captchar.git"
},
"bugs": {
"url": "https://github.com/chrisyip/node-captchar/issues"
},
"homepage": "https://github.com/chrisyip/node-captchar",
"scripts": {
"test": "gulp test"
},
"author": {
"name": "Chris Yip",
"email": "i@chrisyip.im"
},
"license": "MIT",
"dependencies": {
"bluebird": "^2.9.13",
"canvas": "^1.2.1",
"fs-extra": "^0.16.3",
"lodash": "^3.3.1",
"random-js": "^1.0.4",
"randomcolor": "^0.2.0"
},
"devDependencies": {
"gulp": "^3.8.5",
"gulp-jshint": "^1.6.4",
"jshint-stylish": "^0.2.0"
},
"engines": {
"node": ">=0.10.0",
"iojs": ">=1.0.0"
}
}