Files
pnpm/packages/modules-yaml/package.json
2019-10-19 17:38:04 +03:00

43 lines
1.1 KiB
JSON

{
"name": "@pnpm/modules-yaml",
"version": "5.0.0",
"description": "Reads/writes `node_modules/.modules.yaml`",
"main": "lib/index.js",
"typings": "lib/index.d.ts",
"files": [
"lib"
],
"engines": {
"node": ">=10"
},
"scripts": {
"lint": "tslint -c tslint.json src/**/*.ts test/**/*.ts",
"tsc": "rimraf lib && tsc",
"test": "pnpm run tsc && pnpm run lint && ts-node test --type-check",
"prepublishOnly": "pnpm run tsc",
"fix": "tslint -c tslint.json src/**/*.ts test/**/*.ts --fix"
},
"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:4.0.0",
"read-yaml-file": "1.1.0",
"write-yaml-file": "3.0.1"
},
"devDependencies": {
"@pnpm/modules-yaml": "link:",
"rimraf": "3.0.0",
"tape": "4.11.0",
"tempy": "0.3.0"
}
}