-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.79 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.79 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
{
"name": "sendit",
"version": "1.0.0",
"description": "SendIT is a courier service that helps users deliver parcels to different destinations.SendIT provides courier quotes based on weight categories.",
"main": "app.js",
"scripts": {
"start": "nodemon --exec babel-node -- app.js",
"test": "babel-node -- ./server/db/tablesSetup && nyc --reporter=html --reporter=text mocha server/tests/*.js --exit --compilers js:babel-core/register",
"test:dev": "cross-env NODE_ENV=test babel-node -- ./server/db/tablesSetup && cross-env NODE_ENV=test nyc --reporter=html --reporter=text mocha server/tests/*.js --exit --compilers js:babel-core/register",
"coverage": "nyc report --reporter=text-lcov | coveralls",
"coveralls": "nyc --reporter=lcov --reporter=text-lcov npm test",
"tablesSetup": "babel-node -- ./server/db/tablesSetup"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Joyce-O/SendIT.git"
},
"keywords": [
"courier"
],
"author": "Joyce",
"license": "ISC",
"bugs": {
"url": "https://github.com/Joyce-O/SendIT/issues"
},
"homepage": "https://github.com/Joyce-O/SendIT#readme",
"dependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-preset-env": "^1.7.0",
"bcrypt": "^3.0.2",
"body-parser": "^1.18.3",
"chai": "^4.2.0",
"chai-http": "^4.2.0",
"coveralls": "^3.0.2",
"cross-env": "^5.2.0",
"dotenv": "^6.1.0",
"express": "^4.16.4",
"jsonwebtoken": "^8.4.0",
"mocha": "^5.2.0",
"nodemon": "^1.18.4",
"nyc": "^13.1.0",
"pg": "^7.6.1",
"shortid": "^2.2.14",
"uuid": "^3.3.2"
},
"devDependencies": {
"codeclimate-test-reporter": "^0.5.1",
"eslint": "^5.8.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-plugin-import": "^2.14.0"
}
}