-
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) · 723 Bytes
/
Copy pathpackage.json
File metadata and controls
31 lines (31 loc) · 723 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": "install-bin",
"version": "0.3.0",
"repository": "git@github.com:maxdeviant/install-bin.git",
"author": "Marshall Bowers <elliott.codes@gmail.com>",
"license": "MIT",
"description": "",
"keywords": [],
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"format": "prettier --ignore-path .gitignore --write '**/*.+(js|json|md|ts|tsx)'",
"build": "tsc -p .",
"test": "jest"
},
"files": [
"lib/",
"!lib/**/__tests__/",
"!lib/**/*.test.{js,d.ts}"
],
"dependencies": {
"axios": "0.27.2",
"tar": "6.1.11"
},
"devDependencies": {
"@types/node": "18.7.1",
"@types/tar": "6.1.2",
"prettier": "2.7.1",
"typescript": "4.7.4"
}
}