-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 1.52 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
{
"name": "pasto",
"version": "1.0.0",
"description": "We always get food late and sometimes have no choice. The super app of Hani didn't really work, let's help him. Build a website where everyday we can oder breakfast and lunch. When visiting it the user should see a form with a time deadline. Each order is saved on a Google Sheet and at a specific time, 10:00am for breakfast and 02:00pm for lunch. The breakfast Orders will be sent to Hani1, and the lunch Orders will be sent to Hani2 on the phone as an SMS.",
"main": "index.js",
"scripts": {
"start": "node index.js",
"test": "npm run cov && npm run cov:upload",
"sendsms":"node app/utils/sendsms.js",
"dev:test": "./node_modules/.bin/nodemon tests/runner.js",
"cov": "./node_modules/.bin/istanbul cover tests/runner.js",
"cov:upload": "CODECLIMATE_REPO_TOKEN=51620977cdd24499e6bdf24fa733edd86065e4eec1c6f016c793b5ec54b97a64 ./node_modules/.bin/codeclimate-test-reporter < ./coverage/lcov.info"
},
"repository": {
"type": "git",
"url": "git+https://github.com/gazaskygeeks/Pasto.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/gazaskygeeks/Pasto/issues"
},
"homepage": "https://github.com/gazaskygeeks/Pasto#readme",
"dependencies": {
"dotenv": "^4.0.0",
"google-auth-library": "^0.10.0",
"googleapis": "^17.1.0",
"moment": "^2.17.1",
"shot": "^3.4.0",
"tape": "^4.6.3",
"twilio": "^2.11.1"
},
"devDependencies": {
"istanbul": "^0.4.5",
"nodemon": "^1.11.0"
}
}