-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
89 lines (89 loc) · 2.03 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"name": "koa-mongo-crud",
"version": "1.2.8",
"description": "Base API for CRUD using koa and mongo",
"main": "index.js",
"repository": "[email protected]:Lansoweb/koa-mongo-crud.git",
"author": "Leandro Silva <[email protected]>",
"license": "MIT",
"private": false,
"engines": {
"node": ">=12.21"
},
"publishConfig": {
"access": "public"
},
"files": [
"/config",
"/src",
"/index.js",
"/package.json",
"/README.md"
],
"dependencies": {
"ajv": "6.0.0",
"basic-auth": "2.0.0",
"hal": "1.2.0",
"http-status": "1.0.1",
"koa": "2.4.1",
"koa-helmet": "3.3.0",
"lodash.has": "^4.5.2",
"log4js": "^6.4.1",
"moment": "^2.22.2",
"mongodb": "^4.3.1",
"query-string": "5.0.1",
"uuid": "^8.3.0"
},
"devDependencies": {
"@babel/core": "^7.12.3",
"@babel/preset-env": "^7.12.1",
"@commitlint/cli": "^16.1.0",
"@commitlint/config-conventional": "^16.0.0",
"babel-jest": "^26.6.1",
"eslint": "^7.32.0",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-plugin-import": "^2.18.2",
"husky": "^3.0.4",
"jest": "^26.6.1"
},
"keywords": [
"koa",
"koa2",
"crud",
"mongo",
"mongodb",
"api"
],
"scripts": {
"lint": "eslint *.js src/*.js src/**/*.js",
"lint-fix": "eslint --fix *.js src/*.js src/**/*.js",
"test": "NODE_ENV=test jest --detectOpenHandles --forceExit --unhandled-rejections=strict --coverage"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"release": {
"tagFormat": "${version}",
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/changelog",
"@semantic-release/npm",
"@semantic-release/github",
"@semantic-release/git"
],
"preset": "angular"
}
}