-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 944 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 944 Bytes
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
{
"name": "server",
"version": "1.0.0",
"description": "TWEB - GitHub Analytics - Server side",
"main": "index.js",
"scripts": {
"test": "./node_modules/mocha/bin/mocha",
"lint": "./node_modules/eslint/bin/eslint.js .",
"build": "npm run lint && npm run test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/heig-vd-tweb2017/server.git"
},
"author": "Michela Zucca & Ludovic Delafontaine",
"license": "MIT",
"bugs": {
"url": "https://github.com/heig-vd-tweb2017/server/issues"
},
"homepage": "https://github.com/heig-vd-tweb2017/server#readme",
"dependencies": {
"cors": "^2.8.4",
"express": "^4.16.1",
"moment": "^2.19.0",
"superagent": "^3.6.1"
},
"devDependencies": {
"chai": "^4.1.2",
"dirty-chai": "^2.0.1",
"eslint": "^4.8.0",
"eslint-config-airbnb-base": "^12.0.1",
"eslint-plugin-import": "^2.7.0",
"mocha": "^3.5.3"
}
}