create-electrojet
Version:
Setup Modern Javascript Applications with a single command
69 lines (68 loc) • 1.39 kB
JSON
{
"name": "create-electrojet",
"version": "0.1.3",
"description": "Setup Modern Javascript Applications with a single command",
"bin": {
"create-electrojet": "bin/create-electrojet"
},
"scripts": {
"format": "standard --fix && prettier --write src/**/*.{js,json}",
"lint": "standard",
"test": "jest",
"watch": "jest --watch",
"coverage": "jest --coverage"
},
"files": [
"bin",
"src"
],
"keywords": [
"electrojet-cli",
"electrojet",
"code-generating-cli"
],
"license": "MIT",
"dependencies": {
"chalk": "^2.4.1",
"download-git-repo": "^1.1.0",
"gluegun": "next",
"node-emoji": "^1.8.1"
},
"devDependencies": {
"husky": "^1.3.1",
"jest": "^23.6.0",
"lint-staged": "^8.1.0",
"prettier": "^1.15.3"
},
"jest": {
"testEnvironment": "node"
},
"standard": {
"env": [
"jest"
],
"ignore": [
"src/templates"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,json,css,md}": [
"standard --fix",
"prettier --write",
"git add"
]
},
"repository": {
"type": "git",
"url": "https://github.com/agneym/create-electrojet"
},
"bugs": {
"url": "https://github.com/agneym/create-electrojet/issues"
},
"gitHead": "db49e04535ffa952042b5b703a9757b44ba1c51b"
}