-
Notifications
You must be signed in to change notification settings - Fork 39
/
package.json
104 lines (104 loc) · 3.05 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
{
"name": "sql-ddl-to-json-schema",
"version": "4.1.1",
"description": "Parse and convert SQL DDL statements to a JSON Schema.",
"keywords": [
"parse",
"parser",
"sql",
"ddl",
"format",
"formatter",
"json",
"schema",
"jsonschema",
"convert",
"converter"
],
"main": "lib/index.js",
"author": "Alexandre Duarte <duartealexf@gmail.com> (https://github.com/duartealexf)",
"maintainers": [
"Alexandre Duarte <duartealexf@gmail.com> (https://github.com/duartealexf)"
],
"scripts": {
"nodemon": "nodemon",
"standard-version": "standard-version",
"ts-node": "ts-node",
"eslint": "eslint",
"tsc": "tsc --build tsconfig.json",
"nearleyc": "node_modules/nearley/bin/nearleyc.js",
"test": "jest --passWithNoTests --no-cache --testTimeout=30000",
"test:watch": "npm run test -- --runInBand --watchAll --testTimeout=30000",
"prebuild:mysql": "npm run ts-node -- tasks/mysql/prebuild.ts",
"postbuild:mysql": "npm run ts-node -- tasks/mysql/postbuild.ts",
"build:mysql": "nearleyc src/mysql/language/grammar.ne -o src/mysql/language/grammar.ts",
"build": "npm run build:mysql && tsc",
"build:watch": "npm run nodemon -- -w src --exec 'npm run build'",
"lint": "eslint {src,tasks,tests}/**/*.ts --fix",
"version": "standard-version && git push --follow-tags",
"prerelease": "npm run build",
"release": "npm publish"
},
"repository": {
"type": "git",
"url": "https://github.com/duartealexf/sql-ddl-to-json-schema"
},
"homepage": "https://github.com/duartealexf/sql-ddl-to-json-schema",
"license": "MIT",
"bugs": {
"url": "https://github.com/duartealexf/sql-ddl-to-json-schema/issues"
},
"dependencies": {
"json-schema": "^0.4.0",
"moo": "0.5.1",
"nearley": "2.20.1"
},
"devDependencies": {
"@types/fs-extra": "^8.1.2",
"@types/jest": "^27.0.2",
"@types/moo": "0.5.5",
"@types/nearley": "2.11.2",
"@types/node": "^13.13.52",
"@types/stringify-object": "^4.0.0",
"@types/winston": "^2.4.4",
"@typescript-eslint/eslint-plugin": "^2.34.0",
"@typescript-eslint/parser": "^2.34.0",
"commitizen": "^4.2.4",
"cz-conventional-changelog": "^2.1.0",
"eslint": "^6.3.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-prettier": "^6.15.0",
"eslint-import-resolver-typescript": "^1.1.1",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-prettier": "^3.4.1",
"fs-extra": "^5.0.0",
"jest": "^27.3.1",
"jest-snapshot": "^27.3.1",
"nodemon": "^3.1.7",
"prettier": "^1.18.2",
"pretty-format": "^27.3.1",
"standard-version": "^9.5.0",
"supports-color": "^9.0.2",
"ts-jest": "^27.0.7",
"ts-node": "^8.10.2",
"typescript": "^3.9.10",
"winston": "^3.3.3"
},
"types": "./typings",
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"nodemonConfig": {
"delay": "1000",
"ignore": [
"grammar.ts",
"grammar.ne"
],
"ext": "ne,ts"
},
"engines": {
"node": ">=8.6.0 <=23"
}
}