-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.31 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": "recaptcha-middleware",
"version": "2.0.0",
"description": "reCAPTCHA verify middleware",
"main": "index.js",
"directories": {
"test": "test"
},
"publishConfig": {
"registry": "http://registry.npmjs.org"
},
"scripts": {
"lint": "eslint -f unix .",
"coveralls": "cat coverage/lcov.info | coveralls",
"pretest": "npm run lint",
"test": "istanbul cover _mocha test",
"posttest": "npm run coveralls && (istanbul check-coverage --statements 90 --branches 75 --functions 100 --lines 95) || echo open coverage/lcov-report/index.html to find out more",
"prepublish": "npm test && npm prune"
},
"repository": {
"type": "git",
"url": "git@github.com:confuser/node-recaptcha-middleware"
},
"keywords": [
"express",
"connect",
"middleware",
"recaptcha",
"verify",
"recaptcha-verify",
"captcha"
],
"author": "James Mortemore <jamesmortemore@gmail.com>",
"license": "ISC",
"bugs": {
"url": "https://github.com/confuser/node-recaptcha-middleware/issues"
},
"dependencies": {
"request": "^2.67.0"
},
"devDependencies": {
"@confuser/eslint-config": "^2.0.0",
"coveralls": "^2.11.2",
"eslint": "^2.10.2",
"eslint-plugin-standard": "^1.3.2",
"istanbul": "^0.4.1",
"mocha": "2",
"nock": "^5.2.1"
}
}