-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.56 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.56 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
52
53
54
55
56
57
58
59
60
61
{
"name": "express-toolkit",
"version": "1.0.7",
"files": [
"index.js",
"src/",
"types/",
"index.d.ts"
],
"description": "Handy tools for building expressjs based http microservices",
"main": "index.js",
"repository": {
"type": "git",
"url": "https://github.com/fatmatto/express-toolkit.git"
},
"scripts": {
"lint": "npx eslint index.js test/* --fix",
"test": "nyc --reporter=text ava test/*.spec.js --verbose",
"test-ci": "npx nyc --reporter=lcov ava test/*.spec.js --verbose",
"commit": "npx git-cz",
"documentation": "docsify init ./docs",
"pre-commit": "npm run lint && npm run test",
"changelog": "npx easy-changelog --out=./CHANGELOG.md",
"release": "sh scripts/release.sh"
},
"author": "Mattia Alfieri",
"license": "MIT",
"husky": {
"hooks": {
"pre-commit": "npm run pre-commit",
"pre-push": "npm run pre-commit"
}
},
"keywords": [
"http",
"microservices",
"express"
],
"dependencies": {
"express": "^4.18.1",
"json8-patch": "^1.0.6",
"mongoose": "^6.5.1",
"throwable-http-errors": "^2.1.0"
},
"devDependencies": {
"ava": "^4.3.1",
"body-parser": "^1.19.0",
"eslint": "^7.32.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.2.0",
"eslint-plugin-standard": "^4.0.1",
"husky": "^1.3.1",
"mongodb-memory-server": "^8.4.0",
"nyc": "^15.1.0",
"sinon": "^7.5.0",
"supertest": "^4.0.2",
"uuid": "^8.3.2"
}
}