-
Notifications
You must be signed in to change notification settings - Fork 609
/
Copy pathpackage.json
43 lines (43 loc) · 1.22 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
{
"name": "@rushstack/rush-resolver-cache-plugin",
"version": "5.148.0",
"description": "A Rush plugin that generates a resolver cache file after successful install.",
"license": "MIT",
"repository": {
"url": "https://github.com/microsoft/rushstack.git",
"type": "git",
"directory": "rush-plugins/rush-resolver-cache-plugin"
},
"main": "lib-commonjs/index.js",
"types": "dist/rush-resolver-cache-plugin.d.ts",
"scripts": {
"build": "heft test --clean",
"_phase:build": "heft run --only build -- --clean",
"_phase:test": "heft run --only test -- --clean"
},
"dependencies": {
"@rushstack/rush-sdk": "workspace:*"
},
"devDependencies": {
"@rushstack/heft": "workspace:*",
"@rushstack/lookup-by-path": "workspace:*",
"@rushstack/node-core-library": "workspace:*",
"@rushstack/terminal": "workspace:*",
"@rushstack/webpack-workspace-resolve-plugin": "workspace:*",
"@types/webpack-env": "1.18.0",
"local-node-rig": "workspace:*"
},
"exports": {
".": {
"require": "./lib/index.js",
"types": "./dist/rush-resolver-cache-plugin.d.ts"
}
},
"typesVersions": {
"*": {
".": [
"dist/rush-resolver-cache-plugin.d.ts"
]
}
}
}