publishr
Version:
A tool for harmonious publishing of git and npm packages.
76 lines • 1.85 kB
JSON
{
"name": "publishr",
"version": "1.0.0",
"description": "A tool for harmonious publishing of git and npm packages.",
"bin": {
"publishr": "bin/publishr.js"
},
"scripts": {
"build": "rimraf lib && babel src/ -d lib/",
"coverage": "rimraf coverage && NODE_PATH=src NODE_ENV=test nyc --check-coverage mocha 'test/**/*.spec.js'",
"dry-run": "node bin/publishr.js dry-run",
"lint": "eslint bin src test",
"test": "npm run lint && npm run coverage",
"postpublish": "node bin/publishr.js postpublish",
"postversion": "npm run build && node bin/publishr.js postversion"
},
"repository": {
"type": "git",
"url": "git+https://github.com/FormidableLabs/publishr.git"
},
"keywords": [
"git",
"npm",
"publish",
"version"
],
"license": "MIT",
"dependencies": {
"chalk": "^1.1.3",
"es6-promise": "^3.2.1",
"log-symbols": "^1.0.2",
"mock-fs": "^4.0.0",
"object-assign": "^4.1.0",
"rimraf": "^2.5.2",
"yargs": "^4.7.1"
},
"devDependencies": {
"babel-eslint": "^7.0.0",
"chai": "^3.5.0",
"coveralls": "^2.11.9",
"eslint": "^2.0.0",
"eslint-config-formidable": "^2.0.0",
"eslint-plugin-filenames": "^1.0.0",
"eslint-plugin-import": "^2.0.0",
"mocha": "^3.0.0",
"nyc": "^10.0.0",
"sinon": "^2.0.0",
"sinon-chai": "^2.8.0",
"babel-cli": "^6.9.1",
"babel-core": "^6.9.1",
"babel-plugin-istanbul": "^4.1.1",
"babel-preset-es2015": "^6.9.0",
"babel-register": "^6.9.1"
},
"publishr": {
"dependencies": [
"^babel"
],
"files": {
".npmignore": ".npmignore.publishr"
},
"scripts": {
"postinstall": ""
}
},
"_publishr": [
{
"created": true,
"path": ".npmignore"
},
{
"created": false,
"path": "package.json"
}
]
}