-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 807 Bytes
/
package.json
File metadata and controls
41 lines (41 loc) · 807 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
40
41
{
"name": "@saltcorn/tabler",
"version": "0.6.1",
"description": "tabler.io layout plugin",
"main": "index.js",
"scripts": {
"test": "jest"
},
"dependencies": {
"@saltcorn/data": "^0.2.0",
"@saltcorn/markup": "^0.2.0"
},
"author": "Tom Nielsen",
"license": "MIT",
"devDependencies": {
"jest": "^25.1.0"
},
"repository": "github:saltcorn/tabler",
"jest": {
"testEnvironment": "node"
},
"publishConfig": {
"access": "public"
},
"eslintConfig": {
"extends": "eslint:recommended",
"parserOptions": {
"ecmaVersion": 2020
},
"env": {
"node": true,
"es6": true
},
"rules": {
"no-unused-vars": "off",
"no-case-declarations": "off",
"no-empty": "warn",
"no-fallthrough": "warn"
}
}
}