-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 869 Bytes
/
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
{
"name": "@verycrazydog/mysql-parser",
"version": "1.2.0",
"description": "Parser for MySQL statements",
"engines": {
"node": ">= 14",
"npm": ">= 8"
},
"main": "dist/index.js",
"devDependencies": {
"ava": "^4.3.1",
"eslint-config-standard-with-typescript": "^22.0.0",
"ts-node": "^10.9.1",
"typescript": "^4.7.4"
},
"scripts": {
"lint": "eslint *.cjs src test",
"fix": "eslint --fix *.cjs src test",
"build": "tsc --build src",
"test": "ava",
"prepack": "npm run build"
},
"license": "MIT",
"author": "VCD <VeryCrazyDog@gmail.com>",
"homepage": "https://github.com/VeryCrazyDog/mysql-parser#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/VeryCrazyDog/mysql-parser.git"
},
"bugs": {
"url": "https://github.com/VeryCrazyDog/mysql-parser/issues"
},
"keywords": [
"mysql",
"parser",
"split"
]
}