-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1.06 KB
/
package.json
File metadata and controls
36 lines (36 loc) · 1.06 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
{
"name": "codewarstracker",
"version": "1.0.0",
"description": "an application track the scores of users everyday and notify any idle user after 2 day",
"main": "index.js",
"scripts": {
"dev:start": "node_modules/.bin/nodemon index.js",
"dev:test": "nodemon tests/runner.js",
"start": "node index.js",
"test": "node tests/index.js",
"scheduler":"node ./app/scheduler.js",
"cov": "./node_modules/.bin/istanbul cover tests/runner.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/go3three/CodeWarsTracker.git"
},
"author": "Mohammed Naji, Akram Badah ,Ghada Ibrahim",
"license": "ISC",
"bugs": {
"url": "https://github.com/go3three/CodeWarsTracker/issues"
},
"homepage": "https://github.com/go3three/CodeWarsTracker#readme",
"dependencies": {
"google-auth-library": "^0.10.0",
"googleapis": "^17.1.0",
"twilio": "^2.11.1"
},
"devDependencies": {
"codeclimate-test-reporter": "^0.4.1",
"istanbul": "^0.4.5",
"nodemon": "^1.11.0",
"shot": "^3.4.0",
"tape": "^4.6.3"
}
}