-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1 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
{
"name": "sms-otp-mean",
"version": "1.0.0",
"description": "a app to send otp sm to contacts",
"main": "app/server.js",
"scripts": {
"start": "node app/server.js",
"test": "export NODE_ENV=test || set \"NODE_ENV=test\" && mocha --timeout 15000 app/**/*test.js",
"test-watch": " nodemon --exec \"npm test\" "
},
"repository": {
"type": "git",
"url": "git+https://github.com/ashokdey/sms-otp-mean.git"
},
"engines": {
"node": "7.3.0"
},
"author": "Ashok Dey",
"license": "MIT",
"bugs": {
"url": "https://github.com/ashokdey/sms-otp-mean/issues"
},
"homepage": "https://github.com/ashokdey/sms-otp-mean#readme",
"dependencies": {
"body-parser": "^1.16.0",
"ejs": "^2.5.5",
"express": "^4.14.1",
"lodash": "^4.17.4",
"mongodb": "^2.2.22",
"mongoose": "^4.8.1",
"twilio": "^2.11.1",
"validator": "^6.2.1"
},
"devDependencies": {
"expect": "^1.20.2",
"mocha": "^3.2.0",
"nodemon": "^1.11.0",
"supertest": "^3.0.0"
}
}