-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 834 Bytes
/
package.json
File metadata and controls
39 lines (39 loc) · 834 Bytes
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
{
"name": "@saltcorn/sql",
"version": "0.6.0",
"description": "Actions and views based on SQL",
"main": "index.js",
"dependencies": {
"@saltcorn/markup": "^0.6.0",
"@saltcorn/data": "^0.6.0",
"underscore": "1.13.6",
"handlebars": "4.7.7",
"node-sql-parser": "5.3.10",
"sqlstring": "^2.3.3"
},
"devDependencies": {
"jest": "^29.7.0"
},
"scripts": {
"test": "jest tests --runInBand"
},
"author": "Tom Nielsen",
"license": "MIT",
"eslintConfig": {
"extends": "eslint:recommended",
"parserOptions": {
"ecmaVersion": 2022
},
"env": {
"node": true,
"es6": true,
"jest/globals": true
},
"rules": {
"no-unused-vars": "off",
"no-case-declarations": "off",
"no-empty": "warn",
"no-fallthrough": "warn"
}
}
}