-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.77 KB
/
Copy pathpackage.json
File metadata and controls
66 lines (66 loc) · 1.77 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
64
65
66
{
"name": "@vorlefan/xlsx",
"version": "0.1.5",
"description": "convert xlsx file into beautiful json file",
"main": "dist/index.js",
"author": {
"email": "dax-soft@live.com",
"name": "Michael Willian Santos"
},
"license": "MIT",
"private": false,
"scripts": {
"build": "webpack --mode production & yarn run size",
"lint": "eslint './src/**/*.{js,ts,tsx}'",
"test": "jest",
"test:watch": "jest --watchAll",
"watch": "tsc -w",
"start": "npm link && nodemon",
"semantic-release": "semantic-release",
"size": "bundlesize"
},
"dependencies": {
"@vorlefan/path": "^1.5.8",
"camelcase": "^6.0.0",
"mongo-xlsx": "^1.0.12",
"string-similarity": "^4.0.1"
},
"devDependencies": {
"@babel/core": "^7.9.0",
"@types/jest": "^25.2.3",
"@types/node": "^14.0.4",
"@typescript-eslint/eslint-plugin": "^2.34.0",
"@typescript-eslint/parser": "^2.34.0",
"babel-loader": "^8.1.0",
"bundlesize": "^0.18.0",
"esbuild": "^0.3.5",
"eslint": "^7.0.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.3",
"jest": "^26.0.1",
"nodemon": "^2.0.4",
"ts-jest": "^26.0.0",
"ts-loader": "^7.0.4",
"typescript": "^3.9.3",
"webpack": "^4.42.1",
"webpack-cli": "^3.3.11"
},
"publishConfig": {
"access": "public"
},
"files": [
"dist/**/*"
],
"keywords": [
"xlsx",
"xlsx2json",
"xls",
"node-xlsx",
"mongo-xlsx",
"convert xlsx"
],
"repository": {
"url": "https://github.com/DaxSoft/xlsx",
"type": "git"
}
}