-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.37 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.37 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
51
{
"name": "@welldone-software/node-toolbelt",
"version": "1.6.2",
"description": "",
"main": "src/index.js",
"private": false,
"scripts": {
"test": "jest",
"lint:fix": "prettier-eslint --write \"src/**/*.js\" && eslint src",
"test:watch": "jest --watch",
"precommit": "jest && eslint src"
},
"repository": {
"type": "git",
"url": "git+https://github.com/welldone-software/node-toolbelt.git"
},
"keywords": [],
"author": "Dani Kenan <dani@welldone-software.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/welldone-software/node-toolbelt/issues"
},
"homepage": "https://github.com/welldone-software/node-toolbelt#readme",
"dependencies": {
"device-detector": "^1.0.2",
"dotenv": "^4.0.0",
"express-jwt": "^5.3.1",
"json-stringify-safe": "^5.0.1",
"jsonwebtoken": "^8.1.1",
"lodash": "^4.17.10",
"pino": "^5.8.0",
"pino-http": "^4.1.0",
"standard-http-error": "^2.0.1",
"url-parse": "^1.4.4"
},
"devDependencies": {
"eslint": "^4.19.1",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-plugin-import": "^2.13.0",
"eslint-plugin-jest": "^21.17.0",
"eslint-plugin-node": "^5.2.1",
"jest": "^22.4.4",
"pre-commit": "^1.2.2",
"prettier": "^1.13.5",
"prettier-eslint": "^8.8.2",
"prettier-eslint-cli": "^4.7.1"
},
"pre-commit": [
"precommit"
]
}