-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
44 lines (44 loc) · 1.56 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
{
"name": "@linkurious/lke-plugin-data-table",
"version": "1.0.11",
"description": "Data-table plugin for Linkurious Enterprise",
"main": "index.js",
"homepage": "https://github.com/Linkurious/lke-plugin-data-table#readme",
"bugs": {
"url": "https://github.com/Linkurious/lke-plugin-data-table/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Linkurious/lke-plugin-data-table.git"
},
"engines": {
"node": ">=18"
},
"author": "Linkurious",
"scripts": {
"lint": "eslint --fix .",
"lint:ci-deactivated": "eslint -f checkstyle -o reports/checkstyle.xml .",
"build": "mkdir -p tmp/github_release && npm pack && gunzip -qf -c linkurious-lke-plugin-data-table-$(cat .version).tgz > lke-plugin-data-table.lke && ln -sf $(pwd)/lke-plugin-data-table.lke $(pwd)/tmp/github_release/lke-plugin-data-table-v$(cat .version).lke",
"plugin:tar": "scripts/postpack.js",
"test:unit": "node ./test/index.js",
"manual-upload": "gh release create \"v$(cat .version)\" tmp/github_release/lke-plugin-data-table-v$(cat .version).lke",
"bump:patch": "bump2version patch && npm version --no-git-tag-version patch",
"bump:minor": "bump2version minor && npm version --no-git-tag-version minor",
"bump:major": "bump2version major && npm version --no-git-tag-version major"
},
"license": "Apache 2",
"files": [
"manifest.json",
"public",
"backend"
],
"bundledDependencies": [
"body-parser"
],
"dependencies": {
"body-parser": "1.19.0"
},
"devDependencies": {
"eslint": "7.20.0"
}
}