-
Notifications
You must be signed in to change notification settings - Fork 677
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1 KB
/
package.json
File metadata and controls
39 lines (39 loc) · 1 KB
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
{
"name": "rush-redis-cobuild-plugin-integration-test",
"version": "1.0.0",
"private": true,
"description": "Tests connecting to an redis server",
"license": "MIT",
"scripts": {
"_phase:build": "heft build --clean",
"build": "heft build --clean",
"test-lock-provider": "node ./lib/testLockProvider.js"
},
"devDependencies": {
"@microsoft/rush-lib": "workspace:*",
"@rushstack/heft": "workspace:*",
"@rushstack/node-core-library": "workspace:*",
"@rushstack/rush-redis-cobuild-plugin": "workspace:*",
"@rushstack/terminal": "workspace:*",
"@types/http-proxy": "~1.17.8",
"@types/node": "20.17.19",
"eslint": "~9.37.0",
"http-proxy": "~1.18.1",
"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/*"
]
}
}
}