-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
31 lines (31 loc) · 861 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
{
"name": "packmine",
"version": "1.0.0",
"main": "index.js",
"repository": "https://github.com/Richienb/packmine.git",
"author": "Richie Bendall <richiebendall@gmail.com>",
"license": "MIT",
"bin": {
"packmine": "./index.js"
},
"scripts": {
"build": "tsc cli.ts",
"start": "yarn build && node cli",
"lint": "eslint cli.ts index.js --color",
"prepublishOnly": "node build"
},
"dependencies": {
"archiver": "^3.1.1",
"chalk": "^2.4.2",
"commander": "^3.0.2",
"ora": "^3.4.0",
"typescript": "^3.8.3"
},
"devDependencies": {
"@types/bluebird": "^3.5.30",
"@types/node": "^12.12.31",
"@typescript-eslint/eslint-plugin": "^1.9.0",
"eslint": "^5.16.0",
"eslint-config-google": "^0.13.0"
}
}