hygen
Version:
The scalable code generator that saves you time.
91 lines (90 loc) • 2.86 kB
JSON
{
"name": "hygen",
"version": "1.5.6",
"main": "lib/index.js",
"repository": "https://github.com/jondot/hygen",
"bin": {
"hygen": "./lib/bin.js"
},
"scripts": {
"standalone": "rm -rf standalone; yarn build:lib && yarn pkg package.json --out-path standalone && node scripts/standalone.js",
"standalone:brew-sha": "shasum -a 256 standalone/*.macos.*.tar.gz",
"build:lib": "babel src --out-dir lib --ignore src/__tests__ && cp -r src/templates lib/",
"build:umd:min": "NODE_ENV=production webpack",
"build:umd": "NODE_ENV=development webpack",
"build": "npm run build:lib",
"release": "yarn build && git commit -am 'build'; yarn version && git push --tags && git push origin master",
"test": "yarn test:code && yarn test:require",
"test:code": "node node_modules/.bin/jest",
"test:metaverse": "node node_modules/.bin/jest metaverse",
"test:require": "babel-node src/bin.timed.js; babel-node src/bin.timed.js; babel-node src/bin.timed.js init self; rm -rf _templates",
"watch": "node node_modules/.bin/jest --watch",
"flow:sync": "flow-typed install",
"hygen": "babel-node src/bin.js",
"hygen:timed": "babel-node src/bin.timed.js",
"docs:prepare": "cd hygen.io && yarn",
"docs:watch": "cd hygen.io && yarn gatsby develop",
"docs:build": "cd hygen.io && yarn build",
"docs:publish": "cd hygen.io && yarn build:gh"
},
"dependencies": {
"chalk": "^2.1.0",
"ejs": "^2.5.7",
"execa": "^0.9.0",
"front-matter": "^2.1.2",
"fs-extra": "^5.0.0",
"inflection": "^1.12.0",
"inquirer": "^4.0.2",
"lodash": "^4.17.4",
"yargs-parser": "^7.0.0"
},
"devDependencies": {
"@babel/cli": "^7.0.0-beta.39",
"@babel/core": "^7.0.0-beta.39",
"@babel/node": "^7.0.0-beta.39",
"@babel/preset-env": "^7.0.0-beta.39",
"@babel/preset-flow": "^7.0.0-beta.39",
"@babel/preset-stage-0": "^7.0.0-beta.39",
"babel-core": "^7.0.0-0",
"babel-jest": "^22.1.0",
"dir-compare": "^1.4.0",
"flow-bin": "0.68.0",
"flow-typed": "^2.2.3",
"gh-pages": "^1.1.0",
"gitbook-cli": "^2.3.2",
"goddamn-javascript-config": "^2.0.0",
"jest": "^22.1.4",
"memfs": "^0.0.15",
"mock-fs": "^4.4.2",
"pkg": "^4.3.0",
"rx-lite": "^4.0.8",
"time-require": "^0.1.2",
"webpack": "^3.3.0"
},
"jest": {
"testRegex": "src/__tests__/.*\\.spec\\.js$",
"transform": {
"^.+\\.jsx?$": "babel-jest"
}
},
"pkg": {
"scripts": "lib/**/*.js",
"assets": "src/**/*",
"outPath": "standalone",
"targets": [
"node8-macos",
"node8-linux",
"node8-win"
]
},
"license": "MIT",
"description": "The scalable code generator that saves you time.",
"keywords": [
"template",
"generator",
"hygen",
"boilerplate",
"redux",
"react"
]
}