-
-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
148 lines (148 loc) · 3.9 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
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
{
"name": "@adonisjs/lucid-slugify",
"version": "2.2.1",
"description": "Generate unique slugs for your Lucid models",
"main": "build/providers/SlugifyProvider.js",
"files": [
"build/adonis-typings",
"build/providers",
"build/src"
],
"typings": "./build/adonis-typings/index.d.ts",
"keywords": [
"adonisjs",
"adonis-lucid"
],
"scripts": {
"mrm": "mrm --preset=@adonisjs/mrm-preset",
"pretest": "npm run lint",
"test:sqlite": "DB=sqlite FORCE_COLOR=true node ./.bin/test.js",
"test:mysql": "DB=mysql FORCE_COLOR=true node ./.bin/test.js",
"test:mysql_legacy": "DB=mysql_legacy FORCE_COLOR=true node ./.bin/test.js",
"test:mssql": "DB=mssql FORCE_COLOR=true node ./.bin/test.js",
"test:pg": "DB=pg FORCE_COLOR=true node ./.bin/test.js",
"test:docker": "npm run test:mysql && npm run test:mysql_legacy && npm run test:pg && npm run test:mssql",
"test": "docker-compose -f docker-compose.yml -f docker-compose-test.yml build && docker-compose -f docker-compose.yml -f docker-compose-test.yml run --rm test && npm run test:sqlite",
"clean": "del build",
"compile": "npm run lint && npm run clean && tsc",
"build": "npm run compile",
"prepublishOnly": "npm run build",
"lint": "eslint . --ext=.ts",
"format": "prettier --write .",
"release": "np --message=\"chore(release): %s\"",
"version": "npm run build",
"sync-labels": "github-label-sync --labels ./node_modules/@adonisjs/mrm-preset/gh-labels.json adonisjs/lucid-slugify",
"commit": "git-cz"
},
"author": "virk,adonisjs",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/adonisjs/lucid-slugify.git"
},
"bugs": {
"url": "https://github.com/adonisjs/lucid-slugify/issues"
},
"homepage": "https://github.com/adonisjs/lucid-slugify#readme",
"devDependencies": {
"@adonisjs/core": "^5.8.2",
"@adonisjs/lucid": "^18.0.0",
"@adonisjs/mrm-preset": "^5.0.3",
"@adonisjs/require-ts": "^2.0.11",
"@poppinss/dev-utils": "^2.0.3",
"@types/node": "^18.7.3",
"commitizen": "^4.2.4",
"cz-conventional-changelog": "^3.3.0",
"del-cli": "^5.0.0",
"dotenv": "^16.0.1",
"eslint": "^8.16.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-adonis": "^2.1.0",
"eslint-plugin-prettier": "^4.0.0",
"github-label-sync": "^2.2.0",
"husky": "^8.0.1",
"japa": "^4.0.0",
"mrm": "^4.0.0",
"mysql": "^2.18.1",
"np": "^7.6.1",
"pg": "^8.7.3",
"prettier": "^2.6.2",
"reflect-metadata": "^0.1.13",
"sqlite3": "^5.0.8",
"tedious": "^15.0.1",
"typescript": "^4.6.4"
},
"peerDependencies": {
"@adonisjs/core": "^5.8.0",
"@adonisjs/lucid": "^18.0.0"
},
"np": {
"contents": ".",
"anyBranch": false
},
"publishConfig": {
"tag": "latest",
"access": "public"
},
"adonisjs": {
"types": "@adonisjs/lucid-slugify",
"providers": [
"@adonisjs/lucid-slugify"
]
},
"dependencies": {
"@poppinss/utils": "^4.0.4",
"nanoid": "^3.3.4"
},
"directories": {
"test": "test"
},
"mrmConfig": {
"core": true,
"license": "MIT",
"services": [
"github-actions"
],
"minNodeVersion": "14.15.4",
"probotApps": [
"stale",
"lock"
],
"runGhActionsOnWindows": false
},
"eslintConfig": {
"extends": [
"plugin:adonis/typescriptPackage",
"prettier"
],
"plugins": [
"prettier"
],
"rules": {
"prettier/prettier": [
"error",
{
"endOfLine": "auto"
}
]
}
},
"eslintIgnore": [
"build"
],
"prettier": {
"trailingComma": "es5",
"semi": false,
"singleQuote": true,
"useTabs": false,
"quoteProps": "consistent",
"bracketSpacing": true,
"arrowParens": "always",
"printWidth": 100
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
}
}