-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
40 lines (40 loc) · 1.16 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
{
"private": true,
"version": "5.1.0",
"name": "visualcaptcha-node-demo",
"description": "Node.js API Server (Demo) with Express 4.0 and Client sessions. To be used with the front-end companion.",
"keywords": [
"captcha",
"visualCaptcha",
"security",
"api",
"demo"
],
"homepage": "http://visualcaptcha.net",
"author": {
"name": "Bruno Bernardino",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "https://github.com/emotionLoop/visualCaptcha-node"
},
"dependencies": {
"express": "4.10.x",
"body-parser": "1.9.x",
"client-sessions": "0.7.x",
"visualcaptcha": "0.1.x"
},
"devDependencies": {
"supertest": "0.14.x",
"mocha": "2.0.x",
"should": "4.1.x",
"istanbul": "0.3.x"
},
"scripts": {
"start": "node server.js",
"test": "mocha --require should --reporter spec test/unit/*.js",
"test-travis": "istanbul cover node_modules/mocha/bin/_mocha --report lcovonly -- --reporter spec --check-leaks test/unit/*.js"
},
"license": "MIT"
}