-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.33 KB
/
Copy pathpackage.json
File metadata and controls
63 lines (63 loc) · 1.33 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
56
57
58
59
60
61
62
63
{
"name": "strapi-plugin-csv-upload",
"version": "2.0.2",
"description": "Import CSV files into Strapi CMS",
"strapi": {
"name": "csv-upload",
"description": "Import CSV files into Strapi CMS",
"kind": "plugin",
"displayName": "CSV Upload"
},
"keywords": [
"strapi",
"plugin",
"CSV",
"import"
],
"scripts": {
"test": "jest"
},
"dependencies": {
"@reduxjs/toolkit": "^1.8.3",
"csvtojson": "^2.0.10",
"dayjs": "^1.11.4",
"react-redux": "^8.0.2",
"redux": "^4.2.0"
},
"devDependencies": {
"@babel/plugin-transform-modules-commonjs": "^7.18.6",
"@babel/preset-env": "^7.18.9",
"babel-jest": "^28.1.3",
"jest": "^28.1.3"
},
"peerDependencies": {
"@strapi/strapi": "^4.0.0"
},
"jest": {
"testPathIgnorePatterns": [
"/node_modules/"
],
"testEnvironment": "node"
},
"author": {
"name": "yasudacloud",
"url": "https://github.com/yasudacloud/strapi-plugin-csv-upload"
},
"repository": {
"type": "git",
"url": "https://github.com/yasudacloud/strapi-plugin-csv-upload"
},
"bugs": {
"url": "https://github.com/yasudacloud/strapi-plugin-csv-upload/issues"
},
"maintainers": [
{
"name": "yasudacloud"
}
],
"engines": {
"node": ">=14.19.1 <=16.x.x",
"npm": ">=6.0.0"
},
"license": "MIT"
}