-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
69 lines (69 loc) · 1.97 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
{
"name": "x-clacks-middleware",
"version": "0.0.0-development",
"description": "x-clacks-overhead header middleware for Express.js",
"main": "./lib/index.js",
"files": [
"lib/",
"CONTRIBUTING.md"
],
"husky": {
"hooks": {
"prepare-commit-msg": "exec < /dev/tty && git cz --hook || true",
"pre-push": "npm run lint && npm run test"
}
},
"scripts": {
"coverage": "jest --coverage && rimraf ./coverage",
"lint": "eslint ./",
"test": "jest && rimraf ./coverage",
"testmon": "jest --watch _tests_.*",
"prebuild": "rimraf ./lib",
"build": "babel ./src -d ./lib",
"clean": "rimraf ./coverage && rimraf ./lib",
"coveralls": "jest --coverage && cat ./coverage/lcov.info | coveralls && rm -rf ./coverage",
"prerelease": "npm pack && tar -xvzf *.tgz && rimraf package *.tgz",
"semantic-release": "semantic-release"
},
"repository": {
"type": "git",
"url": "https://github.com/MatthewZito/x-clacks-middleware.git"
},
"keywords": [
"expressjs",
"HTTP headers",
"middleware",
"micro-library"
],
"author": "Matthew T Zito",
"license": "MIT",
"bugs": {
"url": "https://github.com/MatthewZito/x-clacks-middleware/issues"
},
"homepage": "https://github.com/MatthewZito/x-clacks-middleware#readme",
"devDependencies": {
"@babel/cli": "^7.10.4",
"@babel/plugin-proposal-class-properties": "^7.10.4",
"@babel/preset-env": "^7.10.4",
"@commitlint/cli": "^9.0.1",
"@commitlint/config-conventional": "^9.0.1",
"babel-eslint": "^10.1.0",
"babel-preset-minify": "^0.5.1",
"connect": "^3.7.0",
"coveralls": "^3.1.0",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^7.4.0",
"express": "^4.17.1",
"husky": "^4.2.5",
"jest": "^26.1.0",
"rimraf": "^3.0.2",
"semantic-release": "^17.1.2",
"supertest": "^5.0.0"
},
"dependencies": {},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}