-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
48 lines (48 loc) · 1.18 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
42
43
44
45
46
47
48
{
"name": "@domclick/super-rush",
"version": "0.3.7",
"description": "CLI utility to join multiple Rush repositories",
"license": "MIT",
"scripts": {
"build": "run-s lint compile",
"build:ci": "npm run build",
"compile": "rm -rf ./dist && tsc",
"lint": "tslint -p .",
"prepublishOnly": "npm run build"
},
"author": "Slava Fomin II <[email protected]> (https://slava.fomin.io)",
"contributors": [],
"homepage": "https://github.com/domclick/super-rush",
"repository": "https://github.com/domclick/super-rush.git",
"bugs": "https://github.com/domclick/super-rush/issues",
"bin": {
"super-rush": "bin/run"
},
"main": "dist/index.js",
"types": "dist/types/index.d.ts",
"files": [
"bin/",
"dist/"
],
"engines": {
"node": ">=10.0.0"
},
"publishConfig": {
"access": "public"
},
"peerDependencies": {
"@microsoft/rush": "^5.22.0"
},
"dependencies": {
"chalk": "^4.1.0",
"load-json-file": "^6.2.0",
"source-map-support": "^0.5.19",
"strip-json-comments": "^3.1.1"
},
"devDependencies": {
"@types/node": "^13.13.21",
"npm-run-all": "^4.1.5",
"tslint": "^6.1.3",
"typescript": "^3.9.7"
}
}