-
Notifications
You must be signed in to change notification settings - Fork 677
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 887 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 887 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
35
{
"name": "rush-package-manager-integration-test",
"version": "1.0.0",
"private": true,
"description": "Integration tests for non-pnpm package managers in Rush.",
"license": "MIT",
"scripts": {
"_phase:build": "heft build --clean",
"build": "heft build --clean",
"test": "node lib-commonjs/runTests.js"
},
"devDependencies": {
"@microsoft/rush": "workspace:*",
"@microsoft/rush-lib": "workspace:*",
"@rushstack/heft": "workspace:*",
"@rushstack/node-core-library": "workspace:*",
"@rushstack/terminal": "workspace:*",
"local-node-rig": "workspace:*"
},
"exports": {
"./lib/*": {
"types": "./lib-dts/*.d.ts",
"import": "./lib-esm/*.js",
"require": "./lib-commonjs/*.js"
},
"./package.json": "./package.json"
},
"typesVersions": {
"*": {
"lib/*": [
"lib-dts/*"
]
}
}
}