-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.27 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
{
"name": "@tuzhanai/captcha",
"version": "1.0.1",
"description": "生成验证码",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"files": [
"dist/captcha.js",
"dist/captcha.d.ts",
"dist/generate_image.js",
"dist/generate_image.d.ts",
"dist/generate_text.js",
"dist/generate_text.d.ts"
],
"scripts": {
"benchmark": "ts-node src/benchmark.ts",
"test": "mocha -b --require ts-node/register --require source-map-support/register --recursive --exit src/test.ts",
"compile": "rm -rf dist && tsc",
"prepublish": "npm test && npm run compile"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tuzhanai/captcha.git"
},
"keywords": [
"captcha"
],
"author": "Zongmin Lei <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/tuzhanai/captcha/issues"
},
"homepage": "https://github.com/tuzhanai/captcha#readme",
"dependencies": {
"gd-bmp": "^1.2.4"
},
"peerDependencies": {
"@types/node": "^10.12.9"
},
"devDependencies": {
"@leizm/benchmark": "1.0.0",
"@types/chai": "^4.1.7",
"@types/mocha": "^5.2.5",
"chai": "^4.2.0",
"mocha": "^5.2.0",
"source-map-support": "^0.5.9",
"ts-node": "^7.0.1",
"typescript": "^3.1.6"
}
}