forked from microsoft/rushstack
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.09 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
{
"name": "@microsoft/rush",
"version": "5.55.1",
"description": "A professional solution for consolidating all your JavaScript projects in one Git repo",
"keywords": [
"install",
"build",
"publish",
"fast",
"incremental",
"package manager",
"monorepo",
"package.json"
],
"preferGlobal": true,
"repository": {
"type": "git",
"url": "https://github.com/microsoft/rushstack/tree/master/apps/rush"
},
"engines": {
"node": ">=5.6.0"
},
"engineStrict": true,
"homepage": "https://rushjs.io",
"scripts": {
"build": "heft test --clean"
},
"bin": {
"rush": "./bin/rush",
"rushx": "./bin/rushx"
},
"license": "MIT",
"dependencies": {
"@microsoft/rush-lib": "workspace:*",
"@rushstack/node-core-library": "workspace:*",
"colors": "~1.2.1",
"semver": "~7.3.0"
},
"devDependencies": {
"@rushstack/eslint-config": "workspace:*",
"@rushstack/heft": "workspace:*",
"@rushstack/heft-node-rig": "workspace:*",
"@types/heft-jest": "1.0.1",
"@types/node": "12.20.24",
"@types/semver": "7.3.5"
}
}