-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.36 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
{
"name": "tencent-captcha-async",
"version": "1.0.0",
"description": "Promise based TencentCaptcha",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"dist",
"lib"
],
"type": "module",
"scripts": {
"test": "mocha test/**/*.spec.ts",
"clean": "rimraf dist lib",
"build": "npm run clean && tsc --module commonjs && tsup"
},
"exports": {
".": {
"require": "./lib/index.js",
"import": "./dist/esm/index.js"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/moegirlwiki/tencent-captcha-async.git"
},
"keywords": [
"tencent",
"captcha",
"tencent-captcha",
"promise-wrapper"
],
"author": "Dragon-Fish <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/moegirlwiki/tencent-captcha-async/issues"
},
"homepage": "https://github.com/moegirlwiki/tencent-captcha-async#readme",
"dependencies": {},
"devDependencies": {
"@types/chai": "^4.3.3",
"@types/chai-as-promised": "^7.1.5",
"@types/mocha": "^9.1.1",
"@types/node": "^18.6.4",
"chai": "^4.3.6",
"chai-as-promised": "^7.1.1",
"form-data": "^4.0.0",
"mocha": "^10.0.0",
"rimraf": "^3.0.2",
"ts-mocha": "^10.0.0",
"ts-node": "^10.9.1",
"tslib": "^2.4.0",
"tsup": "^6.2.2",
"tsx": "^3.9.0",
"typescript": "^4.8.2"
}
}