-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.43 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
{
"name": "sql-create-table-statement-analyzer",
"version": "1.0.1",
"description": "extract column detail from sql create table statements",
"main": "lib/analyzer.umd.js",
"module": "lib/analyzer.es.js",
"unpkg": "lib/analyzer.iife.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "rollup --compact --config rollup.config.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/TinyWisp/sql-create-table-statement-analyzer.git"
},
"keywords": [
"javascript",
"sql",
"create",
"table",
"statement",
"extract",
"columns"
],
"author": "yinquan",
"license": "MIT",
"bugs": {
"url": "https://github.com/TinyWisp/sql-create-statement-analyzer/issues"
},
"homepage": "https://github.com/TinyWisp/sql-create-statement-analyzer#readme",
"dependencies": {
"mysql-tokenizer": "^1.0.7"
},
"devDependencies": {
"@babel/core": "^7.18.13",
"@babel/preset-env": "^7.18.10",
"@rollup/plugin-babel": "^5.3.1",
"@rollup/plugin-commonjs": "^22.0.2",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^13.3.0",
"babel": "^6.23.0",
"core-js": "^3.25.0",
"eslint": "^8.23.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-standard": "^15.0.1",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-n": "^15.2.5",
"eslint-plugin-promise": "^6.0.1",
"rollup": "^2.78.1"
}
}