postinstall-build
Version:
Helper for conditionally building your npm package on postinstall in order to support git installs.
51 lines (50 loc) • 1.18 kB
JSON
{
"name": "postinstall-build",
"version": "5.0.2",
"description": "Helper for conditionally building your npm package on postinstall in order to support git installs.",
"repository": {
"type": "git",
"url": "https://github.com/exogen/postinstall-build.git"
},
"bugs": {
"url": "https://github.com/exogen/postinstall-build/issues"
},
"main": "index.js",
"bin": {
"postinstall-build": "cli.js"
},
"files": [
"index.js",
"cli.js"
],
"scripts": {
"build": "npm run build:docs",
"build:docs": "doctoc --title \"## Contents\" README.md",
"check": "npm run lint && npm test",
"lint": "standard --verbose | snazzy",
"test": "cd test && npm test",
"test:reset": "cd test && npm run reset",
"test:reset:node_modules": "rimraf test/node_modules"
},
"pre-commit": [
"build:docs",
"lint"
],
"keywords": [
"npm",
"postinstall",
"build",
"lib",
"scripts"
],
"author": "Brian Beck",
"license": "MIT",
"devDependencies": {
"doctoc": "^1.2.0",
"pre-commit": "^1.1.3",
"rimraf": "^2.5.4",
"snazzy": "^6.0.0",
"standard": "^10.0.0"
},
"dependencies": {}
}