forked from germanattanasio/your-celebrity-match
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.37 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
{
"name": "your-celebrity-match",
"version": "2.3.0",
"description": "your-celebrity-match uses the Personality Insights service to find a celebrity similar to you based off of your online presence",
"private": true,
"scripts": {
"start": "node server.js",
"test": "npm run jshint && (npm run codecov || true)",
"jshint": "jshint --exclude ./node_modules/",
"codecov": "istanbul cover ./node_modules/mocha/bin/_mocha && codecov"
},
"dependencies": {
"body-parser": "^1.15.0",
"cf-deployment-tracker-client": "0.0.8",
"express": "^4.13.4",
"express-rate-limit": "^2.1.2",
"express-secure-only": "^0.2.1",
"extend": "^3.0.0",
"helmet": "^1.3.0",
"jade": "^1.11.0",
"mongoose": "^4.4.10",
"q": "^2.0.3",
"twitter": "^0.2.13",
"watson-developer-cloud": "^1.3.3"
},
"devDependencies": {
"codecov": "^1.0.1",
"istanbul": "^0.4.2",
"jshint": "^2.9.1",
"mocha": "^2.4.5",
"nock": "^7.7.2",
"supertest": "^1.2.0"
},
"author": "IBM Corp.",
"contributors": [
{
"name": "German Attanasio Ruiz",
"email": "[email protected]"
},
{
"name": "Jeff Stylos",
"email": "[email protected]"
}
],
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/watson-developer-cloud/yourcelebritymatch/issues"
},
"engines": {
"node": ">=4.3.0"
}
}