-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 757 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 757 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
{
"name": "halpers",
"version": "1.0.0",
"description": "A command line interface for TypeScript.",
"main": "index.js",
"scripts": {
"halp": "ts-node src/run",
"lint": "eslint .",
"build": "rm -rf dist && tsc && chmod 777 ./dist/src/run.js"
},
"preferGlobal": true,
"bin": {
"halp": "./dist/src/run.js"
},
"author": "Dexx van der Mandele",
"license": "ISC",
"dependencies": {
"axios": "^0.21.1",
"form-data": "^3.0.0",
"node-cache": "^5.1.2",
"ora": "^4.0.4"
},
"devDependencies": {
"@types/node": "^16.11.6",
"@types/yargs": "^16.0.0",
"@typescript-eslint/eslint-plugin": "^4.11.1",
"@typescript-eslint/parser": "^4.11.1",
"eslint": "^7.0.0",
"typescript": "^4.0.5"
}
}