mirror of
https://github.com/pnpm/pnpm.git
synced 2026-02-05 20:51:36 -05:00
45 lines
1.3 KiB
JSON
45 lines
1.3 KiB
JSON
{
|
|
"name": "@pnpm/modules-yaml",
|
|
"version": "6.0.0",
|
|
"description": "Reads/writes `node_modules/.modules.yaml`",
|
|
"main": "lib/index.js",
|
|
"typings": "lib/index.d.ts",
|
|
"files": [
|
|
"lib",
|
|
"!*.map"
|
|
],
|
|
"engines": {
|
|
"node": ">=10.13"
|
|
},
|
|
"scripts": {
|
|
"lint": "tslint -c ../../tslint.json src/**/*.ts test/**/*.ts",
|
|
"_test": "cd ../.. && c8 --reporter lcov --reports-dir packages/modules-yaml/coverage ts-node packages/modules-yaml/test --type-check",
|
|
"test": "pnpm run compile && pnpm run _test",
|
|
"prepublishOnly": "pnpm run compile",
|
|
"fix": "tslint -c tslint.json src/**/*.ts test/**/*.ts --fix",
|
|
"compile": "rimraf lib tsconfig.tsbuildinfo && tsc --build"
|
|
},
|
|
"repository": "https://github.com/pnpm/pnpm/blob/master/packages/modules-yaml",
|
|
"keywords": [
|
|
"pnpm",
|
|
"modules.yaml"
|
|
],
|
|
"author": "Zoltan Kochan <z@kochan.io> (https://www.kochan.io/)",
|
|
"license": "MIT",
|
|
"bugs": {
|
|
"url": "https://github.com/pnpm/pnpm/issues"
|
|
},
|
|
"homepage": "https://github.com/pnpm/pnpm/blob/master/packages/modules-yaml#readme",
|
|
"dependencies": {
|
|
"@pnpm/types": "workspace:5.0.0",
|
|
"is-windows": "1.0.2",
|
|
"read-yaml-file": "1.1.0",
|
|
"write-yaml-file": "3.0.1"
|
|
},
|
|
"devDependencies": {
|
|
"@pnpm/modules-yaml": "link:",
|
|
"@types/is-windows": "^1.0.0",
|
|
"tempy": "0.4.0"
|
|
}
|
|
}
|