-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 1.04 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
{
"name": "ligue-ticktick",
"version": "1.2.0",
"description": "Command Line Interface to get formatted goals from TickTick",
"main": "src/cli.js",
"bin": {
"ligue-ticktick": "./src/cli.js"
},
"scripts": {
"start": "node ./src/cli.js get-goals",
"format": "prettier --write ./src/**/*.js",
"lint": "eslint \"src/**/*.js\" --quiet"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ArthurDelamare/ligue-ticktick.git"
},
"keywords": [],
"author": "Arthur Delamare <delamare.arth@gmail.com> (https://github.com/ArthurDelamare)",
"license": "ISC",
"bugs": {
"url": "https://github.com/ArthurDelamare/ligue-ticktick/issues"
},
"homepage": "https://github.com/ArthurDelamare/ligue-ticktick#readme",
"dependencies": {
"axios": "^0.20.0",
"commander": "^6.0.0",
"dotenv": "^8.2.0",
"ora": "^5.0.0",
"ticktick-node-api": "^1.2.0",
"uuid": "^8.3.0"
},
"devDependencies": {
"eslint": "^7.7.0",
"eslint-config-prettier": "^6.11.0",
"prettier": "^2.0.5"
}
}