-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.29 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
{
"name": "yarn-plugin-envinfo",
"version": "1.0.0",
"description": "Yarn plugin so that you can run `envinfo` in your project based on a local `.envinfo` project config file.",
"keywords": [
"yarn",
"yarn-plugin",
"plugin"
],
"license": "MIT",
"homepage": "https://github.com/TheKnarf/yarn-plugin-envinfo",
"bugs": "https://github.com/TheKnarf/yarn-plugin-envinfo/issues",
"author": "TheKnarf (https://theknarf.com)",
"scripts": {
"build": "./update-main.js ./src/index.ts && builder build plugin",
"postbuild": "mv ./bundles/@yarnpkg/plugin-envinfo.js ./index.js && ./update-main.js ./index.js",
"test": "jest",
"prepack": "yarn build && yarn postbuild",
"clean": "rm ./index.js"
},
"dependencies": {
"envinfo": "^7.8.1",
"json5": "^2.2.0"
},
"devDependencies": {
"@swc/core": "^1.2.122",
"@swc/jest": "^0.2.15",
"@types/node": "^16.0.0",
"@yarnpkg/builder": "^3.1.0",
"@yarnpkg/cli": "^3.1.0",
"@yarnpkg/core": "^3.1.0",
"clipanion": "^3.0.1",
"jest": "^27.4.5",
"jest-pnp-resolver": "^1.2.2",
"regenerator-runtime": "^0.13.9",
"typescript": "^4.4.2"
},
"packageManager": "[email protected]",
"files": [
"./index.js"
],
"repository": "github:TheKnarf/yarn-plugin-envinfo",
"main": "./index.js"
}