This repository was archived by the owner on Mar 5, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.57 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.57 KB
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
{
"name": "express-bandwidth",
"main": "./lib",
"scripts": {
"lint": "eslint ./src ./test",
"build": "babel ./src --out-dir ./lib --copy-files",
"clean": "rimraf ./lib",
"pretest": "npm run lint",
"test": "babel-node test/*.js",
"preversion": "npm test && npm run changelog",
"version:auto": "npm version $(conventional-recommended-bump --preset=angular)",
"postversion": "git push && git push --tags",
"release": "npm run version:auto && npm publish",
"prepublish": "npm run build",
"changelog:generate": "conventional-changelog -p angular -i CHANGELOG.md -w",
"changelog:commit": "git add CHANGELOG.md && git commit -m \"chore(changelog): auto generate changelog\"",
"changelog": "npm run changelog:generate && npm run changelog:commit"
},
"keywords": [],
"author": "Olivier Lalonde <olalonde@gmail.com>",
"license": "MIT",
"dependencies": {
"debug": "^2.2.0"
},
"devDependencies": {
"babel-cli": "^6.1.18",
"babel-eslint": "^4.1.5",
"babel-preset-es2015": "^6.1.18",
"blue-tape": "^0.1.10",
"conventional-changelog": "^0.5.1",
"conventional-recommended-bump": "0.0.3",
"cz-conventional-changelog": "^1.1.4",
"eslint": "^1.9.0",
"eslint-config-airbnb": "^1.0.0",
"express": "^4.13.3",
"express-transform": "^1.0.1",
"node-fetch": "^1.3.3",
"rimraf": "^2.4.3"
},
"version": "0.0.1",
"config": {
"commitizen": {
"path": "node_modules/cz-conventional-changelog/"
}
},
"description": "Express bandwidth middleware",
"directories": {
"test": "test"
}
}