-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 676 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 676 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
32
33
34
{
"name": "@tinypixelco/gitio",
"version": "1.1.0",
"license": "MIT",
"files": [
"bin",
"lib",
"types"
],
"bin": {
"gitio": "./bin/gitio.js"
},
"main": "./lib/index.js",
"types": "./types/index.d.ts",
"scripts": {
"build": "tsc -p tsconfig.json",
"gitio": "./bin/gitio.js"
},
"devDependencies": {
"@types/lodash": "^4.14.170",
"@types/node": "^13.7.7",
"@types/qs": "^6.9.6",
"@types/react": "^16.9.23",
"@types/react-dom": "^16.9.9",
"typescript": "^4.2.4"
},
"dependencies": {
"axios": "^0.21.0",
"ink": "^3.0.8",
"lodash": "^4.17.21",
"qs": "^6.10.1",
"react": "^17.0.1"
}
}