blob: 3c6fa005fe5cbf6d7e34976ad5639c50b31afdf6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
{
"name": "@denotest/node-lifecycle-scripts",
"version": "1.0.0",
"scripts": {
"preinstall": "echo preinstall && node preinstall.js && node --require ./helper.js preinstall.js",
"install": "echo install && cli-esm 'hello from install script'",
"postinstall": "echo postinstall && npx cowsay postinstall"
},
"dependencies": {
"@denotest/bin": "1.0.0"
}
}
|