forked from HaileyBot/captcha-generator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.4 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
60
61
{
"name": "@nguard-security/captcha-generator",
"version": "1.7.1",
"description": "An NPM package to generate captcha images that can be used in Discord bots or various other projects",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"clean": "rm -rf coverage .nyc_output dist/**/*",
"compile": "tsup src/index.ts",
"test": "nyc mocha",
"coverage": "nyc report -r lcovonly",
"build": "npm run clean && npm run compile && npm test && npm run coverage"
},
"nyc": {
"all": true
},
"author": "cheesits456 <quin@cheesits456.dev>",
"license": "GPL-3.0",
"dependencies": {
"canvas": "^2.11.2"
},
"devDependencies": {
"@istanbuljs/nyc-config-typescript": "^1.0.1",
"@types/mocha": "^10.0.6",
"@types/node": "^20.14.8",
"mocha": "^10.4.0",
"mocha-lcov-reporter": "^1.3.0",
"nyc": "^17.0.0",
"source-map-support": "^0.5.19",
"tsup": "^8.1.0",
"typescript": "^5.5.2"
},
"engines": {
"node": ">=18.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/NGuard-Security/captcha-generator.git"
},
"bugs": {
"url": "https://github.com/NGuard-Security/captcha-generator/issues"
},
"keywords": [
"captcha",
"generator",
"bot",
"authentication",
"discord",
"slack"
],
"directories": {
"example": "./examples",
"test": "./test"
},
"prettier": {
"arrowParens": "avoid",
"printWidth": 80,
"trailingComma": "all",
"useTabs": true
}
}