mirror of
https://github.com/pnpm/pnpm.git
synced 2026-01-27 00:08:53 -05:00
32 lines
1.2 KiB
JSON
32 lines
1.2 KiB
JSON
{
|
|
"scripts": {
|
|
"lint": "tslint --config tslint.json **/src/**/*.ts **/test/**/*.ts --exclude '**/node_modules/**'",
|
|
"test-master": "pnpm run lint && pnpm run build && run-p -r verdaccio test-pkgs-master",
|
|
"test-pkgs-master": "cross-env PNPM_REGISTRY_MOCK_UPLINK=http://localhost:7348 pnpm test --filter=./packages --filter=./privatePackages",
|
|
"test-branch": "pnpm run lint && git remote set-branches --add origin master && git fetch && pnpm run build && run-p -r verdaccio test-pkgs-branch",
|
|
"test-pkgs-branch": "cross-env PNPM_REGISTRY_MOCK_UPLINK=http://localhost:7348 pnpm test --filter=...[origin/master]",
|
|
"verdaccio": "verdaccio --config ./verdaccio.yaml --listen 7348",
|
|
"build": "pnpm run -r tsc"
|
|
},
|
|
"devDependencies": {
|
|
"@pnpm/registry-mock": "1.11.1",
|
|
"@pnpm/tsconfig": "workspace:*",
|
|
"@pnpm/tslint-config": "workspace:*",
|
|
"@types/node": "*",
|
|
"@types/tape": "^4.2.33",
|
|
"cross-env": "7.0.0",
|
|
"npm": "6.13.7",
|
|
"npm-run-all": "4.1.5",
|
|
"publish-packed": "2.1.1",
|
|
"rimraf": "3.0.1",
|
|
"tape": "4.13.0",
|
|
"ts-node": "8.6.2",
|
|
"tslint": "5.20.1",
|
|
"typescript": "3.7.5",
|
|
"verdaccio": "4.4.2"
|
|
},
|
|
"engines": {
|
|
"pnpm": ">=4"
|
|
}
|
|
}
|