Files
pnpm/packages/lifecycle/test/fixtures/with-many-scripts/package.json
2018-12-15 21:47:22 +02:00

11 lines
441 B
JSON

{
"name": "with-many-scripts",
"version": "1.0.0",
"scripts": {
"prepare": "node -e \"process.stdout.write('prepare')\" | json-append output.json",
"preinstall": "node -e \"process.stdout.write('preinstall')\" | json-append output.json",
"install": "node -e \"process.stdout.write('install')\" | json-append output.json",
"postinstall": "node -e \"process.stdout.write('postinstall')\" | json-append output.json"
}
}