Files
pnpm/package.json
2018-03-18 23:02:54 +02:00

68 lines
1.5 KiB
JSON

{
"name": "@pnpm/lifecycle",
"version": "1.0.1",
"description": "Package lifecycle hook runner",
"main": "lib/index.js",
"typings": "lib/index.d.ts",
"files": [
"lib"
],
"engines": {
"node": ">=4"
},
"scripts": {
"lint": "tslint -c tslint.json --project .",
"tsc": "rimraf lib && tsc",
"test": "npm run lint && preview && ts-node test --type-check && mos t",
"md": "mos",
"prepublishOnly": "npm run tsc",
"fix": "tslint -c tslint.json --project . --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/pnpm/lifecycle.git"
},
"keywords": [
"pnpm",
"lifecycle",
"scripts"
],
"author": "Zoltan Kochan <z@kochan.io> (https://www.kochan.io/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/pnpm/lifecycle/issues"
},
"homepage": "https://github.com/pnpm/lifecycle#readme",
"peerDependencies": {
"@pnpm/logger": "^1.0.0"
},
"dependencies": {
"@pnpm/types": "^1.7.0",
"npm-lifecycle": "^2.0.1",
"path-exists": "^3.0.0",
"read-package-json": "^2.0.13",
"util.promisify": "^1.0.0"
},
"devDependencies": {
"@pnpm/logger": "^1.0.1",
"@types/tape": "^4.2.31",
"json-append": "^1.1.1",
"mos": "^2.0.0-alpha.3",
"mos-plugin-readme": "^1.0.4",
"package-preview": "^1.0.1",
"rimraf": "^2.6.2",
"tape": "^4.8.0",
"ts-node": "^5.0.0",
"tslint": "^5.8.0",
"typescript": "^2.6.1"
},
"mos": {
"plugins": [
"readme"
],
"installation": {
"useShortAlias": true
}
}
}