-
Notifications
You must be signed in to change notification settings - Fork 19
/
package.json
executable file
·36 lines (36 loc) · 965 Bytes
/
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
{
"name": "medium-stat-box",
"version": "1.0.0",
"main": "dist/index.js",
"author": "kylemocode",
"license": "MIT",
"scripts": {
"lint": "eslint --ext .js,.ts ./src",
"build": "rm -rf lib && tsc && ncc build dist/index.js --minify && find dist/ -type f -not -name 'index.js' -delete"
},
"files": [
"lib"
],
"dependencies": {
"axios": "^0.19.2",
"cheerio": "^1.0.0-rc.3",
"dotenv": "^8.2.0",
"gist-box": "^0.3.0",
"text-table": "^0.2.0",
"tslib": "^1.11.0"
},
"devDependencies": {
"@types/cheerio": "^0.22.16",
"@types/dotenv": "^8.2.0",
"@types/node": "^13.7.4",
"@types/text-table": "^0.2.1",
"@typescript-eslint/eslint-plugin": "^2.20.0",
"@typescript-eslint/parser": "^2.20.0",
"@vercel/ncc": "^0.27.0",
"eslint": "^6.8.0",
"eslint-config-airbnb-typescript": "^7.0.0",
"eslint-plugin-import": "^2.20.1",
"ts-node": "^8.6.2",
"typescript": "^3.8.2"
}
}