-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
46 lines (46 loc) · 1.02 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
{
"name": "okky-list",
"version": "1.4.3",
"description": "A simple Module that fetches latest article about developer's life on OKKY",
"type": "commonjs",
"main": "main.js",
"bin": {
"okky-list": "dist/main.js"
},
"scripts": {
"dev": "ts-node main.ts",
"build": "tsc",
"test": "jest --forceExit --coverage --verbose"
},
"repository": "https://github.com/rkJun/okky-list",
"keywords": [
"okky",
"okjsp",
"command",
"line"
],
"author": "Juntai Park",
"license": "MIT",
"preferGlobal": true,
"dependencies": {
"async": "^3.2.0",
"cheerio": "^1.0.0-rc.10",
"commander": "^8.0.0",
"got": "^12.5.3",
"ora": "^5.4.1",
"pad": "^3.2.0",
"terminal-link": "^2.1.1"
},
"devDependencies": {
"@types/got": "^9.6.12",
"@types/jest": "^26.0.24",
"@types/node": "^16.0.1",
"eslint": "^7.30.0",
"jest": "^27.0.6",
"prettier": "^2.3.2",
"ts-jest": "^27.0.3",
"ts-node": "^10.0.0",
"tslib": "^2.3.0",
"typescript": "^4.3.5"
}
}