-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
91 lines (91 loc) · 2.34 KB
/
package.json
File metadata and controls
91 lines (91 loc) · 2.34 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
{
"name": "WayFarer-API",
"version": "1.0.0",
"description": "A public bus transportation booking server back-end API",
"main": "index.js",
"scripts": {
"test-init": "jasmine.js init",
"test": "NODE_ENV=test babel-node spec/run.js",
"coveralls-coverage": "coveralls < ./coverage/lcov.info",
"test:coverage": "NODE_ENV=test nyc jasmine && npm run coveralls-coverage",
"lint": "eslint '**/*.js'",
"start": "npm run prod",
"server": "babel-node ./src/index.js",
"server:prod": "node ./dist/index.js",
"dev": "DEBUG=dev NODE_ENV=development nodemon --exec babel-node ./src/index.js",
"clean": "rimraf dist",
"build": "babel ./src --out-dir dist",
"prod": "NODE_ENV=production npm run server:prod",
"postinstall": "npm run build"
},
"engines": {
"node": "10.15.3",
"npm": "6.9.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Ucheduk/WayFarer-API.git"
},
"keywords": [
"node",
"rest",
"api",
"wayfarer"
],
"author": "Uche Nwakwuo",
"license": "ISC",
"bugs": {
"url": "https://github.com/Ucheduk/WayFarer-API/issues"
},
"homepage": "https://github.com/Ucheduk/WayFarer-API#readme",
"devDependencies": {
"babel-plugin-istanbul": "^5.1.4",
"coveralls": "^3.0.4",
"eslint": "^5.16.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-plugin-import": "^2.18.0",
"jasmine": "^3.4.0",
"jasmine-console-reporter": "^3.1.0",
"node-mocks-http": "^1.7.6",
"nodemon": "^1.19.1",
"nyc": "^14.1.1",
"supertest": "^4.0.2"
},
"dependencies": {
"@babel/cli": "^7.5.0",
"@babel/core": "^7.5.4",
"@babel/node": "^7.5.0",
"@babel/plugin-transform-runtime": "^7.5.0",
"@babel/preset-env": "^7.5.4",
"@babel/register": "^7.4.4",
"@babel/runtime": "^7.5.4",
"bcrypt": "^3.0.6",
"body-parser": "^1.19.0",
"debug": "^4.1.1",
"dotenv": "^8.0.0",
"express": "^4.17.1",
"joi": "^14.3.1",
"jsonwebtoken": "^8.5.1",
"npm-run-all": "^4.1.5",
"pg": "^7.11.0",
"rimraf": "^2.6.3",
"swagger-ui-express": "^4.0.7"
},
"nyc": {
"require": [
"@babel/register"
],
"reporter": [
"lcov",
"text"
],
"sourceMap": false,
"instrument": false
},
"private": true,
"browserslist": [
"last 1 version",
"> 1%",
"IE 10"
]
}