-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
75 lines (75 loc) · 1.95 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
{
"name": "db2graphql",
"version": "0.13.3",
"description": "Generate Graphql schema based on existing relational database",
"main": "index.js",
"engines": {
"node": ">=8.0.0"
},
"scripts": {
"prettier": "prettier --write ./src",
"lint": "eslint ./src",
"check": "npm run prettier && npm run lint && npm test",
"demo-pg": "psql -h localhost -U postgres -f ./demo/database.sql db2graphql",
"demo-mysql": "mysql --user=root --password db2graphql < ./demo_mysql/database.sql",
"demo-mssql": "sqlcmd -S localhost\\SQLEXPRESS -i ./demo_mssql/database.sql",
"start": "nodemon demo",
"start-mysql": "nodemon demo_mysql",
"start-mssql": "nodemon demo_mssql",
"docs:update": "jsdoc src --debug -d docs -R README.md -t docstemplates/default",
"test": "jest --maxWorkers=1",
"watch": "jest --maxWorkers=1 --watch --coverage",
"travis_test": "jest --maxWorkers=1 --coverage --coverageReporters=text-lcov | coveralls"
},
"keywords": [
"database",
"graphql",
"generate",
"api"
],
"author": "Marco Afonso",
"contributors": [
{
"name": "Michael Di Prisco",
"email": "[email protected]",
"url": "https://github.com/Cadienvan"
}
],
"license": "MIT",
"dependencies": {
"lru-cache": "^6.0.0",
"string-hash-64": "^1.0.3"
},
"devDependencies": {
"@apollo/server": "^4.3.1",
"coveralls": "^3.1.1",
"eslint": "^8.32.0",
"graphql": "^16.0.0",
"jest": "^29.7.0",
"jsdoc": "^3.6.11",
"knex": "^2.4.1",
"mssql": "^10.0.1",
"mysql": "^2.18.1",
"nodemon": "^2.0.20",
"pg": "^8.8.0",
"prettier": "^2.8.3"
},
"jest": {
"coveragePathIgnorePatterns": [
"/node_modules/",
"/cache/",
"/demo/",
"/demo_mysql/",
"/docs/"
],
"collectCoverageFrom": [
"src/**/*.{js,jsx}"
],
"watchPathIgnorePatterns": [
"/migrations/",
"/demo/",
"/demo_mysql/",
"/docs/"
]
}
}