@google/dscc-gen
Version:
Create component & connector projects with sane defaults.
28 lines (27 loc) • 772 B
JSON
{
"name": "{{MANIFEST_NAME}}",
"deployments": {
"production": "{{PRODUCTION_DEPLOYMENT_ID}}",
"latest": "{{LATEST_DEPLOYMENT_ID}}"
},
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"devDependencies": {
"@google/clasp": "^2.0.1",
"argparse": "^1.0.10",
"chalk": "^2.4.2",
"opn": "^5.4.0",
"prettier": "^1.16.4",
"terminal-link": "^1.2.0"
},
"scripts": {
"prettier": "prettier --write \"src/**/*.js\"",
"push": "clasp push",
"watch": "clasp push --watch",
"open": "clasp open",
"try_production": "node scripts/dscc-scripts.js -s try_production",
"try_latest": "node scripts/dscc-scripts.js -s try_latest",
"update_production": "node scripts/dscc-scripts.js -s update_production"
}
}