Skip to content

Commit

Permalink
feat: Initial commit
Browse files Browse the repository at this point in the history
1,create project folder
2,register npm package.jon
  • Loading branch information
lewischeng(程柳锋) committed Apr 10, 2017
1 parent eb598ee commit 626def2
Show file tree
Hide file tree
Showing 4 changed files with 40 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
.idea/
.DS_Store
node_modules
npm-debug.log
Empty file added bin/feflow
Empty file.
Empty file added lib/index.js
Empty file.
36 changes: 36 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
{
"name": "feflow-cli",
"version": "0.0.1",
"description": "A command line tool aims to improve front-end engineer workflow.",
"main": "lib/index.js",
"scripts": {
"commitmsg": "validate-commit-msg",
"commit": "git-cz ",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s -r 0"
},
"repository": {
"type": "git",
"url": "https://github.com/iv-web/feflow-cli.git"
},
"keywords": [
"workflow",
"commandline",
"front-end"
],
"author": "lewischeng",
"license": "MIT",
"bin": {
"feflow": "./bin/feflow"
},
"dependencies": {
"inquirer": "^3.0.6",
"shelljs": "^0.7.7",
"yeoman-environment": "^1.6.6"
},
"devDependencies": {
"commitizen": "^2.3.0",
"validate-commit-msg": "^2.11.1",
"conventional-changelog-cli": "^1.2.0",
"husky": "^0.13.1"
}
}

0 comments on commit 626def2

Please sign in to comment.