-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 855 Bytes
/
Copy pathpackage.json
File metadata and controls
30 lines (30 loc) · 855 Bytes
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
{
"name": "logware",
"version": "1.0.1",
"description": "Easy, flexible and clear Express middleware logging",
"main": "./dist/index.js",
"scripts": {
"test": "mocha ./test",
"lint": "./node_modules/.bin/eslint --ext .js ./src ./test",
"build": "babel src --presets babel-preset-es2015 --out-dir dist",
"precommit": "npm run lint && npm run test",
"prepublish": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/gwpmad/logware.git"
},
"author": "gwpmad",
"license": "ISC",
"bugs": {
"url": "https://github.com/gwpmad/logware/issues"
},
"homepage": "https://github.com/gwpmad/logware#readme",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"babel-register": "^6.26.0",
"eslint": "^4.6.0",
"sinon": "^3.2.1"
}
}