-
-
Notifications
You must be signed in to change notification settings - Fork 27
/
package.json
78 lines (78 loc) · 2.35 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
{
"name": "sequelize-slugify",
"description": "Add slugs to sequelize models",
"version": "1.6.2",
"author": {
"name": "Jarrod Connolly",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "https://github.com/jarrodconnolly/sequelize-slugify.git"
},
"bugs": {
"url": "https://github.com/jarrodconnolly/sequelize-slugify/issues"
},
"main": "index",
"types": "types/sequelize-slugify.d.ts",
"engines": {
"node": ">=10.9.0"
},
"keywords": [
"slug",
"slugify",
"sequelize",
"sequelize-plugin",
"orm"
],
"license": "MIT",
"dependencies": {
"sluglife": "^0.9.8"
},
"files": [
"index.js",
"/lib",
"/types"
],
"devDependencies": {
"@dogatana/honkit-plugin-back-to-top-button": "1.0.0",
"@types/eslint": "7.28.0",
"@types/jest": "27.0.1",
"codecov": "3.8.3",
"cross-env": "7.0.3",
"dotenv": "10.0.0",
"eslint": "7.32.0",
"eslint-config-jarrod": "1.0.0",
"@faker-js/faker": "6.3.1",
"gh-pages": "3.2.3",
"gitbook-plugin-variables": "1.1.0",
"honkit": "3.6.20",
"jest": "27.0.6",
"mariadb": "2.5.4",
"mysql2": "2.3.0",
"pg": "8.7.1",
"pg-hstore": "2.3.4",
"sequelize": "6.6.5",
"sqlite3": "5.0.2",
"standard-version": "9.3.1",
"tedious": "11.4.0",
"typescript": "4.3.5"
},
"scripts": {
"test": "npm run test-unit-sqlite",
"test-unit-sqlite": "cross-env DIALECT=sqlite jest",
"test-unit-postgres": "cross-env DIALECT=postgres jest",
"test-unit-mysql": "cross-env DIALECT=mysql jest",
"test-unit-mariadb": "cross-env DIALECT=mariadb jest",
"test-unit-mssql": "cross-env DIALECT=mssql jest",
"test-unit-all": "npm run test-unit-sqlite && npm run test-unit-postgres && npm run test-unit-mysql && npm run test-unit-mssql",
"cover-unit": "cross-env DIALECT=sqlite jest --coverage=true",
"cover-report": "codecov --disable=gcov --file=coverage/lcov.info",
"docs:build": "honkit build",
"docs:serve": "honkit serve",
"docs:publish": "npm run docs:build && gh-pages --dist _book --branch docs --dotfiles",
"lint": "eslint --format table --ignore-path .gitignore --config .eslintrc.js .",
"lint:report": "eslint --ignore-path .gitignore --config .eslintrc.js --output-file eslint_report.json --format json .",
"release": "standard-version --sign"
}
}