mirror of
https://github.com/pnpm/pnpm.git
synced 2026-03-24 10:01:48 -04:00
59 lines
1.4 KiB
JSON
59 lines
1.4 KiB
JSON
{
|
|
"name": "@pnpm/config",
|
|
"version": "1.2.2",
|
|
"description": "Gets configs for pnpm",
|
|
"main": "lib/index.js",
|
|
"typings": "lib/index.d.ts",
|
|
"files": [
|
|
"lib"
|
|
],
|
|
"scripts": {
|
|
"prepublishOnly": "npm run tsc",
|
|
"tsc": "rimraf lib && tsc",
|
|
"lint": "tslint -c tslint.json --project .",
|
|
"test-with-preview": "npm run lint && preview && ts-node test && mos t",
|
|
"test": "npm run lint && npm run tsc && pnpm link . && ts-node test && mos t"
|
|
},
|
|
"repository": "https://github.com/pnpm/pnpm/blob/master/packages/config",
|
|
"keywords": [
|
|
"pnpm",
|
|
"config"
|
|
],
|
|
"engines": {
|
|
"node": ">=6"
|
|
},
|
|
"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/config#readme",
|
|
"dependencies": {
|
|
"@types/camelcase": "^4.1.0",
|
|
"@types/node": "^9.4.6 || 10",
|
|
"@types/which": "^1.3.1",
|
|
"@zkochan/npm-conf": "^1.0.0",
|
|
"camelcase": "^5.0.0",
|
|
"which": "^1.3.0"
|
|
},
|
|
"devDependencies": {
|
|
"@types/tape": "^4.2.32",
|
|
"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": "^6.0.3",
|
|
"tslint": "^5.8.0",
|
|
"typescript": "^2.9.1"
|
|
},
|
|
"mos": {
|
|
"plugins": [
|
|
"readme"
|
|
],
|
|
"installation": {
|
|
"useShortAlias": true
|
|
}
|
|
}
|
|
}
|