-
Notifications
You must be signed in to change notification settings - Fork 174
/
package.json
59 lines (59 loc) · 1.07 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
{
"name": "svg-captcha",
"version": "1.4.0",
"description": "generate svg captcha in node.js or express.js",
"main": "index.js",
"scripts": {
"test": "jest",
"lint": "xo"
},
"repository": {
"type": "git",
"url": "git+https://github.com/steambap/svg-captcha.git"
},
"keywords": [
"captcha",
"svg",
"node captcha",
"captcha generator",
"captcha alternative"
],
"author": {
"name": "Weilin Shi",
"email": "[email protected]"
},
"engines": {
"node": ">=4.x"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/steambap/svg-captcha/issues"
},
"homepage": "https://github.com/steambap/svg-captcha#readme",
"dependencies": {
"opentype.js": "^0.7.3"
},
"devDependencies": {
"jest": "^21.1.0",
"jest-environment-node-debug": "^2.0.0",
"xo": "^0.18.2"
},
"xo": {
"esnext": true,
"envs": [
"jest"
],
"rules": {
"linebreak-style": [
0
]
}
},
"typings": "index.d.ts",
"files": [
"fonts/*",
"lib/*",
"index.d.ts",
"*.md"
]
}