-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.38 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
{
"dependencies": {
"astring": "^1.4.3",
"debug": "^4.1.1",
"lodash": "^4.17.20",
"pg-formatter": "^1.1.2",
"sql-parse": "^0.1.5"
},
"description": "SQL linting rules for ESLint.",
"devDependencies": {
"@babel/cli": "^7.11.6",
"@babel/core": "^7.11.6",
"@babel/node": "^7.10.5",
"@babel/plugin-transform-flow-strip-types": "^7.10.4",
"@babel/preset-env": "^7.11.5",
"@babel/register": "^7.11.5",
"babel-plugin-add-module-exports": "^1.0.4",
"chai": "^4.2.0",
"eslint": "^7.32.0",
"eslint-config-canonical": "24.1.1",
"gitdown": "^3.1.3",
"glob": "^7.1.6",
"husky": "^4.3.0",
"jsonlint": "^1.6.3",
"mocha": "^8.1.3",
"semantic-release": "^17.1.1"
},
"engines": {
"node": ">=10"
},
"keywords": [
"eslint",
"plugin",
"sql"
],
"license": "BSD-3-Clause",
"main": "./dist/index.js",
"name": "eslint-plugin-sql-pretty",
"peerDependencies": {
"eslint": ">=7.9.0"
},
"repository": {
"type": "git",
"url": "https://codeberg.org/devthefuture/eslint-plugin-sql-pretty"
},
"scripts": {
"build": "babel ./src --out-dir ./dist --copy-files",
"lint": "eslint ./src",
"lint:fix": "yarn run lint --fix",
"precommit": "npm run lint && npm run test",
"test": "mocha --recursive --require @babel/register --reporter progress --timeout 9000"
},
"version": "1.1.2"
}