-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.47 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
{
"name": "@scipe/express-logger",
"version": "1.0.0",
"description": "Yet another express logger",
"main": "dist/index.js",
"scripts": {
"test": "mocha --require @babel/register --exit",
"format": "prettier --single-quote --write \"**/*.js\"",
"build": "rm -rf dist/* && babel src --out-dir dist",
"prepare": "npm run build",
"postversion": "git push && git push --tags"
},
"eslintConfig": {
"extends": "@scipe"
},
"babel": {
"presets": [
[
"@babel/preset-env",
{
"targets": "> 0.25%, not dead"
}
]
]
},
"prettier": {
"singleQuote": true
},
"repository": {
"type": "git",
"url": "git+https://github.com/science-periodicals/express-logger.git"
},
"keywords": [
"logger",
"express"
],
"author": "Sebastien Ballesteros",
"license": "See README.md",
"bugs": {
"url": "https://github.com/science-periodicals/express-logger/issues"
},
"homepage": "https://github.com/science-periodicals/express-logger#readme",
"dependencies": {
"bunyan": "^1.8.12",
"on-finished": "^2.3.0",
"uuid": "^3.3.2"
},
"devDependencies": {
"@babel/cli": "^7.5.0",
"@babel/core": "^7.5.0",
"@babel/node": "^7.5.0",
"@babel/preset-env": "^7.5.0",
"@babel/register": "^7.4.4",
"@scipe/eslint-config": "^1.0.0",
"express": "^4.17.1",
"mocha": "^6.1.4",
"prettier": "^1.18.2",
"request": "^2.88.0",
"server-destroy": "^1.0.1"
}
}