-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1.1 KB
/
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
37
38
39
40
41
{
"name": "multi-shell",
"version": "2.0.0-alpha.1",
"description": "A tool to run multiple shell in parallel.",
"bugs": "https://github.com/aligay/multi-shell/issues",
"repository": {
"type": "git",
"url": "https://github.com/aligay/multi-shell.git"
},
"license": "MIT",
"main": "src/index.js",
"types": "src/index.d.ts",
"bin": {
"m-sh": "./bin/m-sh",
"multi-shell": "./bin/m-sh"
},
"scripts": {
"build": "npm run clean && npm run lint && tsc",
"clean": "rimraf {src,test,script}/**/*.{js,map,d.ts}",
"debug": "node --inspect-brk lib/index.js",
"dev": "npm run clean && tsc -w",
"lint": "tslint --project tsconfig.json --format stylish --fix",
"prepublishOnly": "npm run build"
},
"dependencies": {
"colors": "^1.4.0",
"glob": "^7.1.6",
"jsonuri": "^2.2.0",
"omg-console": "^1.1.2",
"tslib": "^1.10.0",
"yargs": "^15.0.2"
},
"devDependencies": {
"@types/node": "^12.12.21",
"@types/yargs": "^13.0.3",
"rimraf": "^3.0.0",
"tslint": "^5.20.1",
"tslint-config-standard": "^9.0.0",
"typescript": "^3.7.3"
}
}