-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.47 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
{
"name": "@jrobinsonc/db-snapshots",
"title": "Database Snapshots",
"description": "Quickly create and load a database snapshots",
"keywords": [
"database",
"snapshots"
],
"homepage": "https://github.com/jrobinsonc/db-snapshots/#readme",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"author": "Jose Robinson <[email protected]> (https://joserobinson.com/)",
"type": "module",
"repository": {
"type": "git",
"url": "https://github.com/jrobinsonc/db-snapshots.git"
},
"bugs": {
"url": "https://github.com/jrobinsonc/db-snapshots/issues"
},
"scripts": {
"lint": "eslint src --max-warnings=0",
"test": "jest"
},
"bin": {
"dbs": "./index.js"
},
"dependencies": {
"chalk": "^5.3.0",
"clui": "^0.3.6",
"configstore": "^6.0.0",
"inquirer": "^9.2.8",
"inquirer-autocomplete-prompt": "^3.0.0",
"lodash": "^4.17.21",
"minimist": "^1.2.8"
},
"devDependencies": {
"@babel/preset-env": "^7.22.9",
"@types/jest": "^29.5.3",
"@types/node": "^20.4.5",
"babel-jest": "^29.6.1",
"babel-plugin-transform-import-meta": "^2.2.0",
"eslint": "^8.45.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jsdoc": "^46.4.4",
"eslint-plugin-prettier": "^5.0.0",
"eslint-plugin-unicorn": "^48.0.1",
"jest": "^29.6.1",
"prettier": "^3.0.0"
},
"engines": {
"node": ">=16.20",
"npm": ">=8.19",
"yarn": ">=1.22"
}
}