forked from catamphetamine/read-excel-file
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
83 lines (83 loc) · 3.11 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
{
"name": "read-excel-file",
"version": "5.2.8",
"description": "Read small to medium `*.xlsx` files in a browser or Node.js. Parse to JSON with a strict schema.",
"module": "index.js",
"sideEffects": false,
"main": "index.commonjs.js",
"types.test": "./index.d.ts.test",
"scripts": {
"test": "mocha --require @babel/register --colors --bail --reporter spec --require ./test/setup.js \"./{,!(node_modules|commonjs|modules)/**/}*.test.js\" --recursive",
"test-coverage": "istanbul cover -x \"commonjs/**\" -x \"modules/**\" -x \"*.test.js\" node_modules/mocha/bin/_mocha -- --compilers js:babel-core/register --colors --reporter dot --require ./test/setup.js \"./{,!(node_modules|commonjs|modules)/**/}*.test.js\" --recursive",
"test-travis": "istanbul cover -x \"commonjs/**\" -x \"modules/**\" -x \"*.test.js\" node_modules/mocha/bin/_mocha --report lcovonly -- --compilers js:babel-core/register --colors --reporter spec --require ./test/setup.js \"./{,!(node_modules|commonjs|modules)/**/}*.test.js\" --recursive",
"clean-for-build": "rimraf ./commonjs/**/* ./modules/**/*",
"build-commonjs-modules": "better-npm-run build-commonjs-modules",
"build-es6-modules": "better-npm-run build-es6-modules",
"browser-build": "rollup --config rollup.config.js",
"build": "npm-run-all clean-for-build build-commonjs-modules build-es6-modules browser-build",
"prepublishOnly": "npm-run-all build test browser-build"
},
"dependencies": {
"jszip": "^3.6.0",
"unzipper": "^0.10.11",
"xmldom": "^0.6.0"
},
"devDependencies": {
"@babel/cli": "^7.14.5",
"@babel/core": "^7.14.5",
"@babel/plugin-proposal-class-properties": "^7.14.5",
"@babel/plugin-transform-for-of": "^7.14.5",
"@babel/plugin-transform-runtime": "^7.14.5",
"@babel/preset-env": "^7.14.5",
"@babel/register": "^7.14.5",
"better-npm-run": "^0.1.0",
"chai": "^4.3.4",
"core-js": "^3.14.0",
"mocha": "^9.0.0",
"npm-run-all": "^4.1.2",
"regenerator-runtime": "^0.13.7",
"rimraf": "^3.0.2",
"rollup": "^2.51.1",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-json": "^4.0.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-terser": "^7.0.2",
"xpath": "0.0.32"
},
"betterScripts": {
"browser-build": {
"command": "webpack --mode production --progress --colors",
"env": {
"WEBPACK_ENV": "build"
}
},
"build-commonjs-modules": {
"command": "babel ./source --out-dir ./commonjs --source-maps",
"env": {
"BABEL_ENV": "commonjs"
}
},
"build-es6-modules": {
"command": "babel ./source --out-dir ./modules --source-maps",
"env": {
"BABEL_ENV": "es6"
}
}
},
"repository": {
"type": "git",
"url": "https://gitlab.com/catamphetamine/read-excel-file"
},
"keywords": [
"excel",
"xlsx",
"browser",
"json"
],
"author": "catamphetamine <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://gitlab.com/catamphetamine/read-excel-file/issues"
},
"homepage": "https://gitlab.com/catamphetamine/read-excel-file#readme"
}