mirror of
https://github.com/pnpm/pnpm.git
synced 2026-02-02 11:12:58 -05:00
42 lines
1.8 KiB
JSON
42 lines
1.8 KiB
JSON
{
|
|
"private": true,
|
|
"scripts": {
|
|
"preinstall": "npx only-allow pnpm",
|
|
"prepare": "pnpm install --dir verdaccio",
|
|
"lint": "tslint --config tslint.json **/src/**/*.ts **/test/**/*.ts --exclude '**/node_modules/**'",
|
|
"test-master": "pnpm run lint && pnpm run compile && run-p -r verdaccio test-pkgs-master",
|
|
"test-pkgs-master": "cross-env PNPM_REGISTRY_MOCK_UPLINK=http://localhost:7348 pnpm run _test --no-sort --filter=./packages --filter=./privatePackages --workspace-concurrency=2",
|
|
"test-branch": "pnpm run lint && git remote set-branches --add origin master && git fetch && pnpm run compile && run-p -r verdaccio test-pkgs-branch --workspace-concurrency=2",
|
|
"test-pkgs-branch": "cross-env PNPM_REGISTRY_MOCK_UPLINK=http://localhost:7348 pnpm run _test --no-sort --filter=...[origin/master]",
|
|
"verdaccio": "verdaccio --config ./verdaccio.yaml --listen 7348",
|
|
"compile": "pnpm run --filter pnpm compile && pnpm run update-manifests",
|
|
"watch": "pnpm run --filter @pnpm/fetch compile && pnpm run --filter pnpm compile -- --watch",
|
|
"coveralls": "lcov-result-merger './packages/*/coverage/lcov.info' | coveralls",
|
|
"update-manifests": "ts-node utils/updater/src/index.ts"
|
|
},
|
|
"devDependencies": {
|
|
"@changesets/cli": "^2.9.1",
|
|
"@pnpm/registry-mock": "^2.0.1",
|
|
"@pnpm/tsconfig": "workspace:*",
|
|
"@pnpm/tslint-config": "workspace:*",
|
|
"@types/node": "*",
|
|
"@types/tape": "^4.13.0",
|
|
"c8": "^7.2.0",
|
|
"coveralls": "^3.1.0",
|
|
"cross-env": "^7.0.2",
|
|
"lcov-result-merger": "^3.1.0",
|
|
"npm": "^6.14.5",
|
|
"npm-run-all": "^4.1.5",
|
|
"publish-packed": "^3.0.1",
|
|
"rimraf": "^3.0.2",
|
|
"tape": "^4.13.3",
|
|
"ts-node": "^8.10.2",
|
|
"tslint": "^6.1.2",
|
|
"typescript": "^3.9.5",
|
|
"verdaccio": "^4.6.2"
|
|
},
|
|
"engines": {
|
|
"pnpm": ">=5"
|
|
}
|
|
}
|