pulumi/examples/dynamic-provider/derived-inputs/package.json
Joe Duffy a74aa51662
Rename pulumi package to @pulumi/pulumi (#917)
In order to begin publishing our core SDK package to NPM, we will
need it to be underneath the @pulumi scope so that it may remain
private.  Eventually, we can alias pulumi back to it.

This is part of pulumi/pulumi#915.
2018-02-12 13:13:13 -08:00

21 lines
427 B
JSON

{
"name": "minimal",
"main": "bin/index.js",
"typings": "bin/index.d.ts",
"scripts": {
"build": "tsc"
},
"devDependencies": {
"@types/minimist": "^1.2.0",
"@types/node": "^8.0.25",
"typescript": "^2.5.3"
},
"dependencies": {
"assert": "^1.4.1",
"sleep-promise": "^2.0.0"
},
"peerDependencies": {
"@pulumi/pulumi": "latest"
}
}