-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.44 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
41
42
43
44
45
46
47
48
49
50
51
52
53
{
"name": "auto-timesheet",
"version": "2.0.2",
"description": "Add redmine timesheet automatically and periodically.",
"main": "src/bin/auto-timesheet.js",
"bin": {
"auto-timesheet": "src/bin/auto-timesheet.js"
},
"scripts": {
"test-periodic": "cross-env NODE_ENV=test node src/periodic.test.js",
"test": "cross-env NODE_ENV=test mocha tests/ --recursive --timeout 10000",
"lint": "eslint . --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/vajahath/auto-timesheet.git"
},
"author": "Vajahath Ahmed <[email protected]> (http://twitter.com/vajahath7)",
"license": "MIT",
"bugs": {
"url": "https://github.com/vajahath/auto-timesheet/issues"
},
"devDependencies": {
"chai": "^4.0.2",
"cross-env": "^5.0.1",
"eslint": "^4.1.1",
"mocha": "^3.4.2"
},
"homepage": "https://github.com/vajahath/auto-timesheet#readme",
"dependencies": {
"async": "^2.5.0",
"bluebird": "^3.5.0",
"cat-me": "^1.0.3",
"chalk": "^2.0.1",
"cheerio": "^1.0.0-rc.2",
"commander": "^2.11.0",
"cookie": "^0.3.1",
"cookieparser": "^0.1.0",
"editor": "^1.0.0",
"fast-levenshtein": "^2.0.6",
"jsonfile": "^3.0.1",
"lme": "^1.5.3",
"lru-cache": "^4.1.1",
"ora": "^1.3.0",
"prompt": "^1.0.0",
"request": "^2.81.0",
"serialize-error": "^2.1.0",
"update-notifier": "^2.2.0",
"user-home": "^2.0.0"
},
"contributors": ["Lakshmipriya (https://twitter.com/mukundanlakshmi)"],
"keywords": ["redmine", "timesheet"]
}