-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
50 lines (50 loc) · 959 Bytes
/
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
{
"name": "jsonrawtoxlsx",
"version": "1.1.2",
"description": "convert raw json to xlsx",
"main": "index.js",
"license": "MIT",
"author": "Arie Syukron <syukronarie@gmail.com>",
"repository": "https://github.com/syukronarie/jsontoxlsx",
"bugs": {
"url": "https://github.com/syukronarie/jsonrawtoxlsx/issues"
},
"contributors": [],
"scripts": {
"test": "jest",
"test:cover": "jest --coverage",
"prepare": "husky install"
},
"dependencies": {
"cc-xlsx": "^0.20.0"
},
"devDependencies": {
"husky": "^8.0.3",
"jest": "^29.7.0"
},
"husky": {
"hooks": {
"pre-commit": "npm run test && npm run test:cover"
}
},
"keywords": [
"json",
"xlsx",
"excel",
"json",
"json-xlsx",
"xlsx-json",
"create-xlsx",
"create-excel",
"json-to-xlsx",
"jsonraw-to-xlsx",
"jsonrawtoxlsx",
"jsonrawtoexcel",
"json-to-excel",
"xlsx-to-json",
"xlsx-from-json",
"microsoft",
"microsoft-xlsx",
"microsoft-excel"
]
}