mirror of
https://github.com/pnpm/pnpm.git
synced 2026-02-05 04:31:31 -05:00
17 lines
578 B
JSON
17 lines
578 B
JSON
{
|
|
"name": "pre-and-postinstall-scripts-example",
|
|
"version": "1.0.0",
|
|
"description": "A package that creates files by pre- and postinstall scripts",
|
|
"scripts": {
|
|
"test": "echo \"Error: no test specified\" && exit 1",
|
|
"preinstall": "node create generated-by-preinstall",
|
|
"postinstall": "node create generated-by-postinstall"
|
|
},
|
|
"author": "Zoltan Kochan <zoltan.kochan@gmail.com> (http://kochan.io/)",
|
|
"license": "MIT",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/rstacruz/pnpm/tree/master/test/packages/postinstall-example"
|
|
}
|
|
}
|