create-html5-app
Version:
Create a new simple project in HTML5 with one command.
69 lines (68 loc) • 1.57 kB
JSON
{
"name": "create-html5-app",
"version": "1.1.2",
"description": "Create a new simple project in HTML5 with one command.",
"repository": "https://github.com/andremalveira/create-html5-app",
"author": {
"name": "André Malveira",
"email": "andremalveira.dev@gmail.com",
"url": "https://github.com/andremalveira"
},
"keywords": [
"cha",
"html",
"html5",
"html-cli",
"html5-cli",
"create-html-app",
"create-html5-app"
],
"private": false,
"bin": {
"create-html5-app": "bin/create-html5-app",
"cha": "bin/cha"
},
"scripts": {
"format": "eslint \"**/*.{js,jsx}\" --fix && prettier \"**/*.{js,jsx,json}\" --write",
"test": "jest",
"watch": "jest --watch",
"snapupdate": "jest --updateSnapshot",
"coverage": "jest --coverage"
},
"files": [
"src",
"LICENSE",
"readme.md",
"docs",
"bin"
],
"license": "MIT",
"dependencies": {
"@octokit/rest": "^19.0.4",
"gluegun": "latest",
"got": "^12.4.1",
"tar": "^6.1.11"
},
"devDependencies": {
"copyfiles": "^2.4.1",
"eslint": "^7.22.0",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-prettier": "^3.3.1",
"husky": "^5.1.3",
"jest": "^26.6.3",
"prettier": "^2.2.1",
"pretty-quick": "^3.1.0"
},
"jest": {
"testEnvironment": "node"
},
"prettier": {
"semi": false,
"singleQuote": true
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
}
}