-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
117 lines (117 loc) · 2.93 KB
/
package.json
File metadata and controls
117 lines (117 loc) · 2.93 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
{
"name": "json-excel-cli",
"version": "1.0.22",
"description": "🦅 Support multi-language file and Chinese-English comparison table excel file conversion",
"main": "index.js",
"bin": {
"json2excel": "./bin/json2excel.js"
},
"packageManager": "yarn@1.22.19",
"scripts": {
"xo-lint": "xo",
"xo-fix": "xo --fix",
"test": "xo && nyc --reporter=html --reporter=lcov ava",
"coverage": "cat ./coverage/lcov.info | ./node_modules/.bin/coveralls -v",
"fix": "eslint --ext .js,.vue,.css --fix",
"release:prerelease": "standard-version --prerelease",
"release:prefix": "standard-version --prerelease alpha",
"release:patch": "standard-version --release-as patch && git push --follow-tags origin master",
"release:minor": "standard-version --release-as minor && git push --follow-tags origin master",
"release:major": "standard-version --release-as major && git push --follow-tags origin master"
},
"files": [
"packages/lib",
"bin"
],
"keywords": [
"MIT-licensed",
"JSON",
"JS",
"Excel",
"XLS",
"XLSX",
"internationalization",
"json2excel",
"json-excel-cli",
"lightweight",
"CLI",
"transform"
],
"engines": {
"node": ">=12"
},
"author": "chendq",
"repository": {
"type": "git",
"url": "https://github.com/chandq/json2excel-cli"
},
"license": "MIT",
"homepage": "https://github.com/chandq/json2excel-cli#readme",
"dependencies": {
"chalk": "^3.0.0",
"commander": "^5.0.0",
"lodash": "^4.18.1",
"minimist": "^1.2.5",
"ora": "^4.0.3",
"xlsx": "^0.17.0"
},
"devDependencies": {
"@commitlint/cli": "^8.3.5",
"@commitlint/config-conventional": "^8.3.4",
"ava": "^3.8.2",
"babel-eslint": "^10.1.0",
"coveralls": "^3.1.0",
"eslint": "^7.0.0",
"husky": "^4.2.5",
"lint-staged": "^10.2.2",
"nyc": "^15.0.1",
"standard-version": "^8.0.0",
"xo": "0.24.0"
},
"xo": {
"space": true,
"esnext": true,
"semicolon": false,
"rules": {
"no-console": 1,
"space-before-function-paren": 0,
"unicorn/escape-case": 0,
"camelcase": 0,
"object-curly-spacing": 0,
"allowShortCircuit": 0,
"unicorn/prevent-abbreviations": 0,
"no-unused-expressions": 0,
"no-unused-vars": 0,
"no-negated-condition": 0,
"unicorn/no-console-spaces": 0,
"unicorn/no-for-loop": 0,
"unicorn/prefer-string-slice": 0,
"prefer-const": 0,
"unicorn/prefer-number-properties": 0,
"capitalized-comments": 0,
"promise/prefer-await-to-then": 0
},
"ignores": [
"examples/**/*"
]
},
"ava": {
"failfast": true
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"lint-staged": {
"*.{js,vue}": [
"eslint"
]
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
}
}