-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
48 lines (48 loc) · 1.09 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
{
"name": "captcha-canvas",
"version": "3.2.3",
"description": "A captcha generator by using skia-canvas module.",
"main": "./js-script/index.js",
"files": [
"js-script/*"
],
"scripts": {
"docsgen": "jsdoc node_modules/.bin/jsdoc --configure .jsdoc.json --verbose",
"example": "node examples/example.js",
"start": "node .",
"build": "tsc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Shashank3736/captcha-canvas.git"
},
"keywords": [
"captcha",
"skia-canvas",
"image",
"generator",
"wick"
],
"author": "Shashank3736",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/Shashank3736/captcha-canvas/issues"
},
"homepage": "https://captcha-canvas.js.org/",
"devDependencies": {
"@types/node": "^14.11.8",
"@types/skia-canvas": "^0.9.28",
"better-docs": "^2.3.2",
"canvas": "^2.8.0",
"eslint": "^7.27.0",
"jsdoc": "^3.6.7",
"typescript": "^4.0.2"
},
"directories": {
"doc": "docs",
"example": "examples"
},
"dependencies": {
"skia-canvas": "^1.0.2"
}
}