-
Notifications
You must be signed in to change notification settings - Fork 607
/
Copy pathpackage.json
47 lines (47 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
44
45
46
47
{
"name": "@rushstack/node-core-library",
"version": "5.10.2",
"description": "Core libraries that every NodeJS toolchain project should use",
"main": "lib/index.js",
"typings": "dist/node-core-library.d.ts",
"license": "MIT",
"repository": {
"url": "https://github.com/microsoft/rushstack.git",
"type": "git",
"directory": "libraries/node-core-library"
},
"scripts": {
"build": "heft build --clean",
"_phase:build": "heft run --only build -- --clean",
"_phase:test": "heft run --only test -- --clean"
},
"dependencies": {
"fs-extra": "~7.0.1",
"import-lazy": "~4.0.0",
"jju": "~1.4.0",
"resolve": "~1.22.1",
"semver": "~7.5.4",
"ajv": "~8.13.0",
"ajv-draft-04": "~1.0.0",
"ajv-formats": "~3.0.1"
},
"devDependencies": {
"local-eslint-config": "workspace:*",
"@rushstack/heft": "0.68.12",
"@rushstack/heft-node-rig": "2.6.48",
"@types/fs-extra": "7.0.0",
"@types/heft-jest": "1.0.1",
"@types/jju": "1.4.1",
"@types/node": "18.17.15",
"@types/resolve": "1.20.2",
"@types/semver": "7.5.0"
},
"peerDependencies": {
"@types/node": "*"
},
"peerDependenciesMeta": {
"@types/node": {
"optional": true
}
}
}