forked from taozhi8833998/node-sql-parser
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 2.02 KB
/
package.json
File metadata and controls
76 lines (76 loc) · 2.02 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "node-sql-parser",
"version": "2.3.0",
"description": "simple node sql parser",
"main": "index.js",
"types": "index.d.ts",
"scripts": {
"build": "rm -rf build/* && mkdir -p build && node build.js && npm run compile",
"test": "NODE_ENV=test npm run lint && mocha --recursive --require @babel/register",
"compile": "babel src -d lib",
"browser": "browserify -p tinyify index.js -o umd/parser.min.js",
"lint": "npm run build && eslint src/",
"prepublishOnly": "npm run build && npm run browser",
"coverLocal": "nyc npm run test",
"cover": "nyc npm run test && nyc report --reporter=text-lcov | coveralls"
},
"repository": {
"type": "git",
"url": "git+https://github.com/taozhi8833998/node-sql-parser.git"
},
"pre-commit": "coverLocal",
"keywords": [
"sql",
"sql-parser",
"parser",
"node",
"nodejs",
"node-parser",
"node-sql-parser",
"ast",
"sql-ast"
],
"author": "taozhi8833998 <taozhi8833998@163.com>",
"files": [
"index.js",
"lib/",
"index.d.ts",
"build/",
"umd/",
"README.md",
"LICENSE"
],
"license": "GPLv2",
"bugs": {
"url": "https://github.com/taozhi8833998/node-sql-parser/issues"
},
"homepage": "https://github.com/taozhi8833998/node-sql-parser#readme",
"engines": {
"node": ">=8"
},
"devDependencies": {
"@babel/cli": "^7.5.5",
"@babel/core": "^7.5.5",
"@babel/plugin-proposal-object-rest-spread": "^7.5.5",
"@babel/preset-env": "^7.5.5",
"@babel/register": "^7.5.5",
"@types/chai": "^4.1.7",
"@types/mocha": "^8.0.0",
"browserify": "^16.5.1",
"chai": "^4.2.0",
"coveralls": "^3.0.13",
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-config-strict": "^14.0.1",
"eslint-plugin-filenames": "^1.3.2",
"eslint-plugin-import": "^2.16.0",
"mocha": "^7.1.1",
"nyc": "15.1.0",
"pegjs": "^0.10.0",
"pre-commit": "^1.2.2",
"tinyify": "^2.5.2"
},
"dependencies": {
"big-integer": "^1.6.48"
}
}