-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 908 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 908 Bytes
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
{
"name": "node-nocap",
"version": "0.2.2",
"description": "NodeJS implementation of multiple captcha solving services that return the same errors and formatted responses.",
"main": "dist/index.js",
"repository": "https://github.com/zMrKrabz/NoCap.git",
"author": "zMrKrabz <anhardy381@gmail.com>",
"license": "MIT",
"dependencies": {
"@types/cors": "^2.8.9",
"body-parser": "^1.19.0",
"cors": "^2.8.5",
"express": "^4.17.1",
"got": "^11.8.1",
"uuid": "^8.3.2"
},
"devDependencies": {
"@types/express": "^4.17.9",
"@types/uuid": "^8.3.0",
"typescript": "^4.1.3"
},
"scripts": {
"prepublish": "tsc && cp -r ./src/public ./dist/src",
"build": "tsc && cp -r ./src/public ./dist/src",
"prepare": "yarn build"
},
"types": "dist/index.d.ts",
"tags": [
"node",
"capmonster",
"recaptcha",
"nocaptcha",
"captcha"
]
}