-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(package): create initial package.json
- Loading branch information
1 parent
f464a76
commit 58ddec4
Showing
1 changed file
with
56 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,56 @@ | ||
{ | ||
"name": "@ianwremmel/http-server-exceptions", | ||
"version": "0.0.0-development", | ||
"description": "Server-side exceptions and express middleware", | ||
"bin": {}, | ||
"repository": { | ||
"type": "git", | ||
"url": "https://api.github.com/users/ianwremmel" | ||
}, | ||
"scripts": { | ||
"commitmsg": "npm run --silent lint:commitmsg", | ||
"coveralls": "nyc report --reporter=text-lcov | coveralls", | ||
"lint": "npm run --silent lint:js && npm run --silent lint:changelog && npm run --silent lint:deps", | ||
"lint:changelog": "commitlint --from origin/master --to HEAD", | ||
"lint:commitmsg": "commitlint -e", | ||
"lint:eslint": "eslint --ignore --ignore-path .gitignore", | ||
"lint:js": "npm run --silent lint:eslint -- .", | ||
"lint:deps": "npm run --silent lint:deps:missing && npm run --silent lint:deps:unused", | ||
"lint:deps:missing": "dependency-check package.json", | ||
"lint:deps:unused": "dependency-check package.json --unused --no-dev", | ||
"lint:staged": "lint-staged", | ||
"mocha-reporter-options": "[ -n \"${CI}\" ] && echo '--reporter xunit --reporter-options output=reports/junit/test.xml'", | ||
"precommit": "npm run --silent lint:staged", | ||
"test": "nyc --reporter=text mocha $(npm run --silent mocha-reporter-options) './src/**/*-spec.js'", | ||
"semantic-release": "semantic-release pre && npm publish && semantic-release post" | ||
}, | ||
"engines": {}, | ||
"keywords": [], | ||
"author": "Ian W. Remmel <[email protected]>", | ||
"license": "MIT", | ||
"dependencies": {}, | ||
"devDependencies": { | ||
"@commitlint/cli": "^4.2.2", | ||
"@commitlint/config-angular": "^4.2.1", | ||
"babel-eslint": "^8.0.1", | ||
"chai": "^4.1.2", | ||
"condition-circle": "^1.5.0", | ||
"coveralls": "^3.0.0", | ||
"dependency-check": "^2.9.1", | ||
"eslint": "^4.10.0", | ||
"eslint-plugin-import": "^2.8.0", | ||
"eslint-plugin-mocha": "^4.11.0", | ||
"husky": "^0.14.3", | ||
"lint-staged": "^4.3.0", | ||
"mocha": "^4.0.1", | ||
"nyc": "^11.2.1", | ||
"semantic-release": "^8.2.0" | ||
}, | ||
"lint-staged": { | ||
"*.js": "lint:eslint", | ||
"bin/**": "lint:eslint" | ||
}, | ||
"release": { | ||
"verifyConditions": "condition-circle" | ||
} | ||
} |