forked from fakhrullah/parse-dbtool
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 900 Bytes
/
package.json
File metadata and controls
39 lines (39 loc) · 900 Bytes
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
{
"name": "parse-dbtool",
"version": "1.2.0",
"main": "./src/parse-dbtool.js",
"scripts": {
"test": "jest"
},
"keywords": [
"parse-server",
"migration",
"seeder"
],
"author": "Fakhrullah Padzil",
"license": "ISC",
"description": "Command line to create database migration and seeder for ParseServer (ParsePlatform).",
"bin": {
"parse-dbtool": "src/parse-dbtool.js"
},
"repository": {
"type": "git",
"url": "https://github.com/fakhrullah/parse-dbtool"
},
"dependencies": {
"chalk": "^4.1.1",
"date-fns": "^2.21.3",
"dotenv": "^10.0.0",
"fast-glob": "^3.2.5",
"parse": "^3.2.0",
"ts-dedent": "^2.1.1",
"yargs": "^17.0.1"
},
"devDependencies": {
"@types/jest": "^26.0.23",
"eslint": "^7.27.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-import": "^2.23.3",
"jest": "^27.0.4"
}
}