-
Notifications
You must be signed in to change notification settings - Fork 36
/
package.json
97 lines (97 loc) · 2.72 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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
{
"name": "better-xlsx",
"version": "0.7.6",
"description": "A better xlsx lib for read / write / toTable / from Table",
"main": "lib/index.js",
"scripts": {
"lint": "eslint --ext .js src test",
"build": "npm run build:node && npm run build:dist",
"build:node": "rimraf lib && NODE_ENV=production babel --out-dir=lib src",
"build:dist": "rimraf dist && NODE_ENV=production rollup -c && uglifyjs -m -o dist/xlsx.min.js dist/xlsx.js",
"prepare": "npm run build",
"test": "NODE_ENV=test nyc mocha -t 0",
"report": "nyc report --reporter=html",
"coveralls": "nyc report --reporter=text-lcov | coveralls",
"doc": "rimraf esdoc && esdoc",
"pages": "npm run doc && gh-pages -d esdoc"
},
"nyc": {
"all": true,
"include": [
"src/**/*.js"
],
"require": [
"@babel/register"
],
"sourceMap": false,
"instrument": false
},
"pre-commit": [
"lint"
],
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.8.4",
"@babel/plugin-external-helpers": "^7.8.3",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/plugin-proposal-decorators": "^7.8.3",
"@babel/plugin-transform-runtime": "^7.8.3",
"@babel/preset-env": "^7.8.4",
"@babel/register": "^7.8.3",
"@rollup/plugin-commonjs": "^19.0.2",
"@rollup/plugin-node-resolve": "^13.0.4",
"babel-eslint": "^10.0.3",
"babel-plugin-add-module-exports": "^1.0.2",
"babel-plugin-class-properties": "^1.0.0",
"babel-plugin-istanbul": "^6.0.0",
"chai": "^4.2.0",
"coveralls": "^3.0.9",
"esdoc": "^1.1.0",
"esdoc-ecmascript-proposal-plugin": "^1.0.0",
"esdoc-inject-style-plugin": "^1.0.0",
"esdoc-standard-plugin": "^1.0.0",
"eslint": "^7.31.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-node": "^11.0.0",
"eslint-plugin-promise": "^5.1.0",
"gh-pages": "^3.2.3",
"mocha": "^9.0.3",
"nyc": "^15.0.0",
"pre-commit": "^1.1.3",
"rimraf": "^3.0.2",
"rollup": "^2.0.0",
"rollup-plugin-babel": "^4.3.3",
"stream-equal": "^2.0.1",
"uglify-js": "^3.7.7"
},
"repository": {
"type": "git",
"url": "git+https://github.com/d-band/better-xlsx.git"
},
"engines": {
"node": ">= 4"
},
"keywords": [
"xlsx",
"excel",
"html",
"read",
"write"
],
"author": "d-band",
"license": "MIT",
"bugs": {
"url": "https://github.com/d-band/better-xlsx/issues"
},
"homepage": "https://github.com/d-band/better-xlsx#readme",
"dependencies": {
"@babel/runtime": "^7.8.4",
"jszip": "^3.2.2",
"kind-of": "^6.0.3"
},
"collective": {
"type": "opencollective",
"url": "https://opencollective.com/better-xlsx"
}
}