-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
executable file
·81 lines (81 loc) · 2.18 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
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
{
"name": "json-key-string-xlsx",
"version": "1.4.1",
"description": "Convert between json and xlsx files by key string in a browser or NodeJS.",
"main": "dist/json-key-string-xlsx.cjs.min.js",
"module": "dist/json-key-string-xlsx.esm.min.js",
"browser": "dist/json-key-string-xlsx.umd.min.js",
"scripts": {
"cnpm": "npm i --registry=https://registry.npm.taobao.org",
"eslint": "eslint .",
"build": "node scripts/build.js",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s",
"test": "mocha -t 10000 -s 2000 test/*.test.js",
"test-coverage": "nyc npm run test",
"report-coverage": "nyc report --reporter=text-lcov > coverage.lcov && codecov"
},
"keywords": [
"excel",
"json",
"key",
"xlsx",
"json-key-string",
"i18n",
"language",
"多语言",
"国际化"
],
"author": "jobyrao<raojianb@mail2.sysu.edu.cn>",
"homepage": "https://github.com/jobyrao/json-key-string-xlsx#readme",
"bugs": {
"url": "https://github.com/jobyrao/json-key-string-xlsx/issues",
"email": "raojianb@mail2.sysu.edu.cn"
},
"license": "MIT",
"dependencies": {
"xlsx": "~0.17.4"
},
"devDependencies": {
"@babel/core": "^7.9.6",
"@babel/preset-env": "^7.7.6",
"@commitlint/cli": "^11.0.0",
"@commitlint/config-conventional": "^11.0.0",
"@rollup/plugin-buble": "^0.20.0",
"chai": "^4.2.0",
"codecov": "^3.8.3",
"conventional-changelog-cli": "^2.1.1",
"eslint": "^4.11.0",
"eslint-config-egg": "^7.4.1",
"husky": "^4.3.0",
"mocha": "^6.2.0",
"nyc": "^14.1.1",
"rollup": "^1.27.13",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-external-globals": "^0.6.1",
"rollup-plugin-node-resolve": "^5.2.0",
"terser": "^4.4.3"
},
"engines": {
"node": ">=8.0.0"
},
"files": [
"dist",
"types"
],
"types": "./types/index.d.ts",
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/jobyrao/json-key-string-xlsx.git"
}
}