-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
46 lines (46 loc) · 1.32 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
{
"name": "debug-error-middleware",
"version": "1.3.0",
"main": "index.js",
"license": "MIT",
"description": "Express/Koa error handling middleware",
"scripts": {
"precommit": "npm run lint",
"lint": "eslint --cache --fix .",
"dev:koa": "nodemon --ext html,js bin/koa.js",
"dev:express": "nodemon --ext html,js bin/express.js",
"test": "mocha tests/express.js; mocha tests/koa.js; npm run test:unit",
"test:unit": "mocha src/**/*.test.js",
"test:express": "mocha tests/express.js",
"test:koa": "mocha mocha tests/koa.js",
"preversion": "npm test",
"postversion": "git push && git push --tags"
},
"dependencies": {
"handlebars": "^4.0.10",
"source-map": "^0.5.7"
},
"author": {
"name": "Matthisk Heimensen",
"url": "https://matthisk.nl/"
},
"devDependencies": {
"babel-eslint": "^7.2.3",
"chai": "^4.1.1",
"cheerio": "^1.0.0-rc.2",
"eslint": "^4.4.1",
"eslint-config-airbnb": "^15.1.0",
"eslint-config-airbnb-base": "^11.3.1",
"eslint-config-prettier": "^2.3.0",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-prettier": "^2.1.2",
"express": "^4.15.4",
"husky": "^0.14.3",
"koa": "^2.3.0",
"mocha": "^3.5.0",
"nodemon": "^1.11.0",
"prettier": "^1.5.3",
"request": "^2.81.0",
"webpack": "^3.5.5"
}
}