forked from ealeksandrov/NodeAPI
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.21 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
{
"name": "NodeAPI",
"version": "1.0.0",
"author": "Evgeny Aleksandrov",
"description": "Simple example of RESTful API with Node.js and passport",
"private": true,
"scripts": {
"start": "node ./bin/www"
},
"dependencies": {
"body-parser": "~1.8.x",
"cookie-parser": "~1.3.x",
"debug": "~2.0.x",
"express": "~4.10.x",
"faker": "^2.0.x",
"method-override": "^2.3.x",
"mongoose": "^4.4.x",
"nconf": "^0.6.x",
"oauth2orize": "^1.0.x",
"passport": "^0.2.x",
"passport-http": "^0.2.x",
"passport-http-bearer": "^1.0.x",
"passport-oauth2-client-password": "^0.1.x",
"winston": "^0.8.x"
},
"jshintConfig":{
"curly": true,
"eqeqeq": true,
"immed": true,
"latedef": false,
"newcap": false,
"noarg": true,
"sub": true,
"undef": true,
"boss": true,
"eqnull": true,
"strict": false,
"scripturl": true,
"evil": true,
"globals" : {
"location": true,
"printStackTrace": false
},
"browser" : true,
"node": true
},
"license": "MIT"
}