-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
49 lines (49 loc) · 1.01 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
{
"name": "rucaptcha-solver",
"version": "1.1.9",
"description": "Yet another rucaptcha client",
"main": "index.js",
"scripts": {
"test": "jest"
},
"license": "MIT",
"devDependencies": {
"babel-eslint": "^7.1.1",
"delay": "^2.0.0",
"eslint": "^3.17.1",
"eslint-config-standard": "^7.0.1",
"eslint-plugin-promise": "^3.5.0",
"eslint-plugin-standard": "^2.1.1",
"husky": "^1.0.0-rc.13",
"jest": "^20.0.0",
"request": "^2.83.0",
"request-promise-native": "^1.0.5"
},
"repository": "https://github.com/bogdan0083/rucaptcha-solver",
"engines": {
"node": ">= 7.0.0"
},
"files": [
"index.js",
"src"
],
"jest": {
"testMatch": [
"**/test/*.js"
],
"testEnvironment": "node"
},
"husky": {
"hooks": {
"pre-commit": "npm test",
"post-commit": "npm publish"
}
},
"dependencies": {
"lodash": "^4.17.4",
"mz": "^2.7.0",
"delay": "^2.0.0",
"request": "^2.83.0",
"request-promise-native": "^1.0.5"
}
}