-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathpackage.json
55 lines (55 loc) · 1.19 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
{
"name": "excel2json",
"version": "1.0.2",
"description": "excel2json",
"main": "build/index.js",
"files": [
"build"
],
"engines": {
"node": ">=8"
},
"scripts": {
"build": "tsc",
"prepublish": "npm run build",
"pretest": "npm run build",
"test": "mocha -r should -R spec --recursive test",
"lint": "eslint ."
},
"repository": {
"type": "git",
"url": "git://github.com/iyu/excel2json.git"
},
"keywords": [
"excel",
"xlsx",
"json",
"parse",
"excel2json"
],
"author": "Yuhei Aihara",
"license": "MIT",
"bugs": {
"url": "https://github.com/iyu/excel2json/issues"
},
"dependencies": {
"jszip": "^3.2.2",
"libxmljs": "^0.19.7",
"lodash": "^4.17.15"
},
"devDependencies": {
"@types/jszip": "^3.1.6",
"@types/libxmljs": "^0.18.3",
"@types/lodash": "^4.14.144",
"@types/node": "^12.11.6",
"@typescript-eslint/eslint-plugin": "^2.5.0",
"@typescript-eslint/parser": "^2.5.0",
"eslint": "^6.5.1",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-plugin-import": "^2.6.0",
"jshint": "^2.6.3",
"mocha": "^10.2.0",
"should": "^5.1.0",
"typescript": "^3.6.4"
}
}