-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 866 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 866 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
{
"name": "notes2toggl",
"version": "0.4.2",
"description": "Parse notes and is logging to Toggl",
"main": "notes2toggl.js",
"repository": "https://github.com/dawiddominiak/notes2toggl.git",
"author": "poczta@dawiddominiak.pl",
"license": "MIT",
"bin": {
"notes2toggl": "./notes2toggl.js"
},
"engines": {
"node": ">= 9.0"
},
"dependencies": {
"bluebird": "^3.5.1",
"get-stdin": "^5.0.1",
"moment": "^2.20.1",
"toggl-api": "^1.0.1"
},
"devDependencies": {
"chai": "^4.1.2",
"eslint": "^4.9.0",
"eslint-config-airbnb": "^16.1.0",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-jsx-a11y": "^6.0.2",
"eslint-plugin-mocha": "^5.0.0",
"eslint-plugin-react": "^7.4.0",
"mocha": "^5.1.1"
},
"scripts": {
"test": "mocha $(find . -name '*.spec.js' ! -ipath '*node_modules*')"
}
}