generator-paypal-integrations
Version:
Yeoman generator for PayPal Integrations
46 lines (45 loc) • 1.46 kB
JSON
{
"name": "<%= packageName %>",
"version": "0.0.0",
"description": "Hapi middleman",
"author": "Hapi Middleman",
"files": [
"lib"
],
"main": "lib/index.js",
"typings": "lib/index.d.ts",
"scripts": {
"clean": "rimraf lib",
"lint": "tslint --force --format verbose \"src/**/*.ts\"",
"build": "yarn run clean && echo Using TypeScript && tsc --version && tsc --pretty",
"watch": "yarn run build --watch",
"release": "yarn test && yarn run build && yarn publish --new-version",
"release:quick": "git add -A && git commit -m 'Quick Release Patch' && yarn run release patch",
"postversion": "git push && git push --follow-tags",
"reinstall": "rimraf node_modules yarn.lock && yarn install",
"start": "cross-env NODE_ENV=production node -r dot-env-json/lib/config lib/index.js",
"start:dev": "cross-env NODE_ENV=development ts-node -r dot-env-json/lib/config src/index.ts",
"gupdate": "yarn global add generator-paypal-integrations --latest"
},
"dependencies": {
"cross-env": "^5.0.5",
"dot-env-json": "^0.0.7",
"glue": "^4.2.0",
"good": "^7.2.0",
"good-console": "^6.4.0",
"good-http": "^6.1.3",
"good-squeeze": "^5.0.2",
"hapi": "^16.4.3"
},
"devDependencies": {
"@types/hapi": "^16.1.6",
"nyc": "^10.0.0",
"rimraf": "^2.0.0",
"ts-node": "^3.0.0",
"tslint": "^5.0.0",
"typescript": "^2.0.0"
},
"engines": {
"node": ">=6.0.0"
}
}