-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.63 KB
/
Copy pathpackage.json
File metadata and controls
55 lines (55 loc) · 1.63 KB
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
53
54
55
{
"name": "weconnect",
"version": "1.0.0",
"description": "A platform that brings individuals and businesses together",
"main": "index.js",
"scripts": {
"start": "babel-node ./bin/www",
"start:dev": "nodemon --exec babel-node ./bin/www",
"test": "nyc --reporter=html --reporter=text mocha ./server/tests/*.js --exit --compilers js:babel-core/register",
"coverage": "nyc report --reporter=text-lcov | coveralls",
"report-coverage": "cat ./coverage/lcov.info | coveralls",
"coveralls": "nyc --reporter=lcov --reporter=text-lcov npm test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/danoseun/WeConnect.git"
},
"keywords": [
"API"
],
"author": "Oluwaseun Somefun",
"license": "ISC",
"bugs": {
"url": "https://github.com/danoseun/WeConnect/issues"
},
"homepage": "https://github.com/danoseun/WeConnect#readme",
"dependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-preset-env": "^1.6.1",
"babel-register": "^6.26.0",
"body-parser": "^1.18.2",
"chai": "^4.1.2",
"chai-http": "^3.0.0",
"express": "^4.16.2",
"express-validator": "^5.0.3",
"morgan": "^1.9.0",
"yamljs": "^0.3.0",
"swagger-ui-express": "^3.0.6"
},
"devDependencies": {
"babel-eslint": "^8.2.2",
"coveralls": "^3.0.0",
"eslint": "^4.18.1",
"eslint-config-airbnb": "^16.1.0",
"eslint-plugin-import": "^2.9.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-react": "^7.7.0",
"istanbul": "^0.4.5",
"mocha": "^5.0.1",
"mocha-lcov-reporter": "^1.3.0",
"nodemon": "^1.17.1",
"nyc": "^11.4.1"
}
}