-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.11 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
{
"name": "cli-timetracker",
"description": "tracks the time you work on tasks",
"version": "0.1.0",
"homepage": "https://github.com/jsfi/timetracker",
"author": {
"name": "Martin Sachse",
"email": "martin.sachse@gmail.com",
"url": "http://jsfi.io"
},
"main": "index.js",
"bin": {
"timetracker": "index.js"
},
"preferGlobal": true,
"scripts": {
"test": "node node_modules/eslint/bin/eslint.js index.js lib/*.js view/*.js && node node_modules/mocha/bin/mocha test/**/*_test.js"
},
"repository": {
"type": "git",
"url": "git://github.com/jsfi/timetracker.git"
},
"bugs": {
"url": "https://github.com/jsfi/timetracker/issues"
},
"license": "MIT",
"engines": {
"node": ">=4.0.0"
},
"keywords": [
"node",
"cli",
"time",
"tracker"
],
"dependencies": {
"es6-promisify": "^3.0.0",
"level": "^1.3.0",
"moment": "^2.10.6",
"parse-cli-arguments": "^1.0.0",
"untildify": "^2.1.0"
},
"devDependencies": {
"eslint": "^1.10.1",
"expect.js": "^0.3.1",
"mocha": "^2.3.4",
"rimraf": "^2.4.4",
"sinon": "^1.17.1"
}
}