forked from ahtinurme/adonis-audit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
118 lines (118 loc) · 3.14 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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
{
"name": "@ksgl/adonis4-audit",
"version": "2.1.15",
"description": "Audit AdonisJS models without pain.",
"main": "index.js",
"engines": {
"node": ">=14.15.0",
"npm": ">=6.14.0",
"yarn": "WE NOT SUPORT - Due github packages incompatibilty Please use npm"
},
"release-it": {
"git": {
"tagName": "v${version}",
"commitMessage": "🔖 chore(release): ${version}",
"pushArgs": [
"--follow-tags",
"--force"
]
},
"github": {
"release": true
},
"npm": {
"publish": false
},
"increment": "conventional:@favoloso/emoji",
"scripts": {
"changelog": "./node_modules/.bin/conventional-changelog -p @favoloso/emoji | tail -n +3",
"beforeStage": "./node_modules/.bin/conventional-changelog -p @favoloso/emoji -i CHANGELOG.md -s"
},
"plugins": {},
"hooks": {
"after:bump": "npx gitmoji-changelog"
}
},
"scripts": {
"test:local": "node bin/japaFile.js",
"test:watch": "nodemon bin/dev.japaFile.js",
"test": "npm run test:local",
"coverage": "nyc npm run test:local",
"prepare": "husky install",
"commit": "cz",
"cm": "npm run commit",
"cma": "git add . && npm run commit",
"lint": "eslint ./ --fix --color",
"ri": "release-it",
"release": "release-it",
"release:patch": "release-it patch",
"release:minor": "release-it minor",
"release:major": "release-it major"
},
"favolosoEmoji": {
"showEmojiPerCommit": true
},
"publishConfig": {
"access": "public"
},
"config": {
"commitizen": {
"path": "cz-customizable"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/ks-labs/adonis-audit.git"
},
"keywords": [
"adonis",
"auditable",
"adonis-auditable",
"adonis-audit"
],
"author": "KS Labs",
"license": "MIT",
"bugs": {
"url": "https://github.com/ks-labs/adonis-audit/issues"
},
"homepage": "https://github.com/ks-labs/adonis-audit#readme",
"dependencies": {
"ansi-regex": "6.0.1",
"lodash": ">=4.17.21",
"mysql": "^2.18.1",
"node-exceptions": "^4.0.1"
},
"devDependencies": {
"@adonisjs/fold": "4.1.0",
"@adonisjs/lucid": "6.1.3",
"@adonisjs/mrm-preset": "1.0.13",
"@adonisjs/sink": "1.1.0",
"@commitlint/cli": "^16.1.0",
"@favoloso/conventional-changelog-emoji": "^0.10.0",
"@release-it/conventional-changelog": "^4.1.0",
"commitizen": "^4.2.4",
"commitlint-config-gitmoji": "^2.2.5",
"cookie": "^0.4.2",
"cz-customizable": "^6.3.0",
"dotenv": "^16.0.0",
"eslint": "^8.33.0",
"eslint-config-prettier": "^8.6.0",
"eslint-config-semistandard": "^17.0.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-n": "^15.6.1",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-promise": "^6.1.1",
"fs-extra": "^10.0.0",
"gitmoji-changelog": "^2.3.0",
"husky": "^7.0.0",
"japa": "^4.0.0",
"macroable": "^1.0.0",
"nodemon": "^2.0.15",
"prettier": "^2.8.3",
"prettier-eslint": "^13.0.0",
"release-it": "^14.12.4",
"sqlite3": "^5.0.2",
"supertest": "^6.2.2"
}
}