65 lines
1.7 KiB
JSON
65 lines
1.7 KiB
JSON
{
|
|
"name": "yalc",
|
|
"version": "1.0.0-pre.53",
|
|
"description": "Work with npm/yarn packages locally like a boss.",
|
|
"homepage": "https://github.com/whitecolor/yalc",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/whitecolor/yalc.git"
|
|
},
|
|
"prettier": {
|
|
"semi": false,
|
|
"singleQuote": true
|
|
},
|
|
"bin": {
|
|
"yalc": "src/yalc.js"
|
|
},
|
|
"main": "src/index.js",
|
|
"scripts": {
|
|
"build": "tsc",
|
|
"clean": "ts-clean-built --old && trash **/*.log",
|
|
"prepublishOnly": "yarn clean && tsc && yarn test",
|
|
"test": "tsc && mocha test && yarn lint",
|
|
"test-dev": "ts-node-dev -T --respawn node_modules/mocha/bin/mocha test/index.ts",
|
|
"ci": "tsc && yarn test",
|
|
"lint": "tslint -p ."
|
|
},
|
|
"husky": {
|
|
"hooks": {
|
|
"pre-commit": "yalc check && pretty-quick --staged"
|
|
}
|
|
},
|
|
"dependencies": {
|
|
"chalk": "^4.1.0",
|
|
"detect-indent": "^6.0.0",
|
|
"fs-extra": "^8.0.1",
|
|
"glob": "^7.1.4",
|
|
"ignore": "^5.0.4",
|
|
"ini": "^2.0.0",
|
|
"npm-packlist": "^2.1.5",
|
|
"yargs": "^16.1.1"
|
|
},
|
|
"devDependencies": {
|
|
"@types/fs-extra": "^7.0.0",
|
|
"@types/glob": "^5.0.30",
|
|
"@types/mocha": "^8.0.0",
|
|
"@types/node": "^12.0.7",
|
|
"@types/npm-packlist": "^1.1.0",
|
|
"@types/yargs": "^6.6.0",
|
|
"clean-ts-built": "^1.0.0",
|
|
"husky": "^1.3.1",
|
|
"mocha": "^8.0.1",
|
|
"prettier": "^2.0.5",
|
|
"pretty-quick": "^1.8.0",
|
|
"trash-cli": "^1.4.0",
|
|
"ts-clean-built": "^1.2.1",
|
|
"ts-node-dev": "^1.0.0-pre.55",
|
|
"tslint": "^5.11.0",
|
|
"tslint-config-prettier": "^1.15.0",
|
|
"tslint-plugin-prettier": "^1.3.0",
|
|
"typescript": "^3.9.7",
|
|
"typescript-tslint-plugin": "^0.1.2"
|
|
},
|
|
"license": "MIT"
|
|
}
|