Skip to content

Commit

Permalink
feat(package): create initial package.json
Browse files Browse the repository at this point in the history
  • Loading branch information
ianwremmel committed Oct 30, 2017
1 parent f464a76 commit 58ddec4
Showing 1 changed file with 56 additions and 0 deletions.
56 changes: 56 additions & 0 deletions package.json
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"
}
}

0 comments on commit 58ddec4

Please sign in to comment.