forked from HaileyBot/captcha-generator
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
59 lines (59 loc) · 1.34 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": "captcha-generator-alphanumeric",
"version": "1.10.2",
"description": "An NPM package to generate alphanumeric captcha images",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"clean": "rm -rf coverage .nyc_output dist/**/*",
"compile": "tsc",
"test": "nyc mocha",
"coverage": "nyc report -r lcovonly",
"build": "npm run clean && npm run compile && npm test && npm run coverage"
},
"nyc": {
"all": true
},
"author": "Varun Patil <[email protected]>",
"license": "GPL-3.0",
"dependencies": {
"canvas": "^2.11.2"
},
"devDependencies": {
"@istanbuljs/nyc-config-typescript": "^1.0.2",
"@types/mocha": "^10.0.6",
"@types/node": "^20.10.2",
"mocha": "^10.2.0",
"mocha-lcov-reporter": "^1.3.0",
"nyc": "^15.1.0",
"source-map-support": "^0.5.21",
"ts-node": "^10.9.1",
"typescript": "^5.3.2"
},
"engines": {
"node": ">=12.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/pulsejet/captcha-generator-alphanumeric.git"
},
"homepage": "https://github.com/pulsejet/captcha-generator-alphanumeric",
"keywords": [
"captcha",
"generator",
"bot",
"authentication",
"discord",
"slack"
],
"directories": {
"example": "./examples",
"test": "./test"
},
"prettier": {
"arrowParens": "avoid",
"printWidth": 80,
"trailingComma": "all",
"useTabs": true
}
}