44 lines
1012 B
JSON
44 lines
1012 B
JSON
{
|
|
"name": "commitplease",
|
|
"version": "3.2.0",
|
|
"description": "Validates strings as commit messages",
|
|
"main": "index.js",
|
|
"bin": {
|
|
"commitplease": "commitplease.js"
|
|
},
|
|
"scripts": {
|
|
"install": "node install",
|
|
"uninstall": "node uninstall",
|
|
"test": "standard && babel-node --presets=es2015 -- node_modules/.bin/nodeunit test.js",
|
|
"test-watch": "nodemon --exec npm run --silent test"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git://github.com/jzaefferer/commitplease.git"
|
|
},
|
|
"keywords": [
|
|
"commit",
|
|
"message",
|
|
"validation"
|
|
],
|
|
"author": {
|
|
"name": "Jörn Zaefferer",
|
|
"url": "http://bassistance.de"
|
|
},
|
|
"license": "MIT",
|
|
"devDependencies": {
|
|
"babel-cli": "^6.10.1",
|
|
"babel-preset-es2015": "^6.9.0",
|
|
"babel-register": "^6.9.0",
|
|
"nodemon": "^1.9.1",
|
|
"nodeunit": "^0.9.1",
|
|
"standard": "^3.0.0"
|
|
},
|
|
"dependencies": {
|
|
"chalk": "^1.1.1",
|
|
"git-tools": "^0.2.1",
|
|
"ini": "^1.3.4",
|
|
"semver": "^5.1.0"
|
|
}
|
|
}
|