-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.62 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.62 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
{
"name": "sqomplexity",
"version": "2.0.0",
"description": "Calculate complexity scores for SQL queries based on a weighting system for query components.",
"keywords": [
"sql",
"complexity",
"sqomplexity",
"metric",
"difficulty",
"score",
"cyclomatic"
],
"main": "src/sqomplexity.js",
"browser": "dist/sqomplexity.umd.js",
"type": "module",
"scripts": {
"test": "cross-env NODE_OPTIONS=\"$NODE_OPTIONS --experimental-vm-modules\" npx jest",
"test:coverage": "npm run test -- --coverage",
"lint": "eslint app.js \"src/*.js\" \"tests/**/*.js\" \"examples/*.js\" \"webpack.config.cjs\"",
"lint:fix": "npm run lint -- --fix",
"build": "webpack",
"build:pegjs:mysql": "pegjs -o build/pegjs-parser-mysql.cjs parsers/mysql.pegjs",
"build:pegjs:mariadb": "pegjs -o build/pegjs-parser-mariadb.cjs parsers/mariadb.pegjs"
},
"files": [
"@types/",
"build/",
"dist/",
"examples/",
"src/",
"app.js"
],
"author": "bert-w",
"license": "ISC",
"repository": {
"type": "git",
"url": "https://github.com/bert-w/sqomplexity.git"
},
"devDependencies": {
"babel-loader": "^9.1.2",
"commander": "^11.0.0",
"cross-env": "^7.0.3",
"eslint": "^8.30.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-jest": "^27.9.0",
"jest": "^29.7.0",
"pegjs": "^0.10.0",
"webpack": "^5.88.2",
"webpack-cli": "^5.1.4"
},
"engines": {
"node": ">=16"
}
}