-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
67 lines (67 loc) · 2.64 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
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"name": "@linkurious/lke-plugin-csv-importer",
"version": "1.0.5",
"engines": {
"node": "14.16.1",
"npm": "6.14.12"
},
"files": [
"backend/**/**.js",
"public/**.js",
"public/**.html",
"public/assets/**",
"manifest.json",
"package.json"
],
"description": "A plugin to quickly import CSV data into LKE",
"main": "public/index.js",
"scripts": {
"tsc": "tsc -b",
"clean": "rm -rf csv-importer.lke",
"copy-assets": "cp -R src/public/assets csv-importer.lke/public && cp src/public/index.html csv-importer.lke/public",
"installProduction": "cp package.json csv-importer.lke && cp -R node_modules csv-importer.lke/node_modules ",
"copyManifest": "cp -R src/manifest.json csv-importer.lke/",
"lint:ci-deactivated": "eslint -f checkstyle -o reports/checkstyle.xml .",
"build:project": "npm-run-all build:public build:backend copyManifest",
"build:public": "tsc -b src/public && npm run copy-assets && cd src/public/dist && browserify *.js --debug -o ../../../csv-importer.lke/public/index.js",
"build:backend": "tsc -b src/backend && npm run installProduction",
"build": "npm run build:project && npm pack ./csv-importer.lke && npm run gunzip ",
"gunzip": "mkdir -p tmp/github_release && gunzip -qf -c linkurious-lke-plugin-csv-importer-$(cat .version).tgz > lke-plugin-csv-importer.lke && ln -sf $(pwd)/lke-plugin-csv-importer.lke $(pwd)/tmp/github_release/lke-plugin-csv-importer-v$(cat .version).lke",
"plugin:tar": "scripts/postpack.js",
"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",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Linkurious/lke-plugin-csv-importer.git"
},
"author": "Linkurious SAS",
"license": "ISC",
"bugs": {
"url": "https://github.com/Linkurious/lke-plugin-csv-importer/issues"
},
"homepage": "https://github.com/Linkurious/lke-plugin-csv-importer#readme",
"devDependencies": {
"@types/body-parser": "1.19.0",
"@types/express": "4.17.9",
"@types/papaparse": "5.2.6",
"@types/superagent": "4.1.10",
"browserify": "17.0.0",
"express": "4.17.1",
"npm-run-all": "4.1.5",
"prettier": "2.3.1",
"typescript": "4.1.3"
},
"dependencies": {
"@linkurious/rest-client": "2.10.3",
"body-parser": "1.19.0",
"papaparse": "5.3.1"
},
"bundledDependencies": [
"body-parser",
"papaparse",
"@linkurious/rest-client"
]
}