-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.75 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.75 KB
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": "@funfunz/sql-data-connector",
"version": "0.12.1",
"description": "sql data connector for Funfunz",
"main": "lib/index.js",
"scripts": {
"jest": "jest --coverage --forceExit",
"test": "npm run jest",
"lint": "eslint src",
"clean": "rm -rf lib && mkdir lib",
"build": "npm run lint && npm run clean && tsc --project tsconfig.build.json",
"prepublishOnly": "npm run build",
"docker-compose:up": "docker compose up -d",
"docker-compose:down": "docker compose down --remove-orphans",
"mysql:shell": "docker-compose exec mysqldb bash -c 'mysql -u root -p$MYSQL_ROOT_PASSWORD $MYSQL_DATABASE'",
"questions": "DEBUG=funfunz:* NODE_ENV=development ts-node ./src/generator/index.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Funfunz/sql-data-connector.git"
},
"keywords": [
"sql",
"data",
"connector",
"funfunz"
],
"bin": {
"@funfunz/sql-data-connector": "./lib/generator/index.js"
},
"author": "João Moura <joao87moura@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/Funfunz/sql-data-connector/issues"
},
"homepage": "https://github.com/Funfunz/sql-data-connector#readme",
"devDependencies": {
"@babel/core": "^7.12.3",
"@babel/preset-env": "^7.12.1",
"@babel/preset-typescript": "^7.12.1",
"@funfunz/core": "^0.23.2",
"@types/jest": "^26.0.15",
"@typescript-eslint/eslint-plugin": "^4.7.0",
"@typescript-eslint/parser": "^4.7.0",
"enquirer": "^2.3.6",
"eslint": "^7.13.0",
"jest": "^26.6.3",
"minimist": "^1.2.5",
"mysql2": "^2.3.3",
"ts-node": "^9.1.1",
"typescript": "^4.0.5"
},
"dependencies": {
"debug": "^4.2.0",
"knex": "^2.3.0",
"pluralize": "^8.0.0"
}
}