-
Notifications
You must be signed in to change notification settings - Fork 22
/
package.json
45 lines (45 loc) · 1.03 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
{
"name": "ossu-api",
"version": "0.0.1",
"description": "Open Source Society API",
"main": "index.js",
"scripts": {
"start": "node index.js",
"test": "semistandard && mocha",
"check-style": "semistandard || true"
},
"repository": {
"type": "git",
"url": "[email protected]:open-source-society/ossu-api.git"
},
"engines": {
"node": "*"
},
"devDependencies": {
"babel-eslint": "^4.1.3",
"semistandard": "^7.0.2"
},
"dependencies": {
"body-parser": "^1.14.1",
"chai": "^3.3.0",
"dotenv": "^1.2.0",
"express": "^4.13.3",
"helmet": "^0.12.0",
"mocha": "^2.3.3",
"mongodb": "^2.0.45",
"mongoose": "^4.1.0",
"passport": "^0.3.0",
"passport-github2": "0.1.9",
"passport-http": "0.2.2",
"redis": "*",
"supertest": "^1.1.0"
},
"license": "MIT",
"homepage": "https://github.com/open-source-society/ossu-api",
"bugs": {
"url": "https://github.com/open-source-society/ossu-api/issues"
},
"semistandard": {
"parser": "babel-eslint"
}
}