-
-
Notifications
You must be signed in to change notification settings - Fork 18
/
package.json
67 lines (67 loc) · 1.54 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
62
63
64
65
66
67
{
"name": "@haileybot/captcha-generator",
"version": "1.7.0",
"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": "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": "cheesits456 <[email protected]>",
"license": "GPL-3.0",
"dependencies": {
"canvas": "^2.6.1"
},
"devDependencies": {
"@istanbuljs/nyc-config-typescript": "^1.0.1",
"@types/mocha": "^9.0.0",
"@types/node": "^16.3.0",
"mocha": "^9.0.0",
"mocha-lcov-reporter": "^1.3.0",
"nyc": "^15.1.0",
"source-map-support": "^0.5.19",
"ts-node": "^10.0.0",
"typescript": "^4.1.3"
},
"engines": {
"node": ">=12.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/HaileyBot/captcha-generator.git"
},
"bugs": {
"url": "https://github.com/HaileyBot/captcha-generator/issues",
"email": "[email protected]"
},
"funding": {
"type": "individual",
"url": "https://donate.haileybot.com"
},
"homepage": "https://www.haileybot.com/captcha-generator",
"keywords": [
"captcha",
"generator",
"bot",
"authentication",
"discord",
"slack"
],
"directories": {
"example": "./examples",
"test": "./test"
},
"prettier": {
"arrowParens": "avoid",
"printWidth": 80,
"trailingComma": "all",
"useTabs": true
}
}