forked from paweltatarczuk/toggl2redmine
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 967 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 967 Bytes
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
{
"name": "toggl2redmine",
"version": "0.1.0",
"description": "Simple app for migrating toggle time entries to redmine as time spents",
"main": "index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/trawiasty/toggl2redmine.git"
},
"keywords": [
"cli"
],
"author": "Paweł Tatarczuk <paweltatarczuk@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/trawiasty/toggl2redmine/issues"
},
"homepage": "https://github.com/trawiasty/toggl2redmine#readme",
"devDependencies": {
"chai": "^3.5.0",
"eslint": "^3.19.0",
"eslint-config-google": "^0.7.1",
"mocha": "^3.2.0",
"sinon": "^2.1.0",
"sinon-chai": "^2.9.0"
},
"dependencies": {
"async": "^2.4.0",
"node-redmine": "^0.1.5",
"toggl-api": "^1.0.1"
},
"scripts": {
"static": "npm run eslint",
"test": "npm run mocha",
"eslint": "eslint index.js lib test",
"mocha": "mocha test"
}
}