forked from catamphetamine/read-excel-file
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
94 lines (94 loc) · 3.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
82
83
84
85
86
87
88
89
90
91
92
93
94
{
"name": "read-excel-file",
"version": "3.0.1",
"description": "Read `*.xlsx` files in a browser or Node.js. Parse to JSON with a strict schema.",
"module": "index.js",
"sideEffects": false,
"main": "index.commonjs.js",
"contributors": [
{
"name": "Trevor Dixon",
"email": "[email protected]"
},
{
"name": "Steve Tarver",
"email": "[email protected]"
},
{
"name": "Jake Scott",
"email": "[email protected]"
},
{
"name": "Fabian Tollenaar",
"email": "[email protected]"
}
],
"scripts": {
"test": "mocha --compilers js:babel-core/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": "better-npm-run browser-build",
"build": "npm-run-all clean-for-build build-commonjs-modules build-es6-modules browser-build",
"prepublish": "npm-run-all build test browser-build"
},
"dependencies": {
"jszip": "^3.1.5",
"unzipper": "^0.8.11",
"xmldom": "^0.1.27",
"xpath": "0.0.27"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-loader": "^7.1.4",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.6.1",
"babel-runtime": "^6.26.0",
"better-npm-run": "^0.1.0",
"chai": "^4.1.2",
"mocha": "^1.17.1",
"npm-run-all": "^4.1.2",
"webpack": "^4.1.1",
"webpack-cli": "^2.0.12"
},
"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://github.com/catamphetamine/read-excel-file"
},
"keywords": [
"excel",
"xlsx",
"browser",
"json"
],
"author": "catamphetamine <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/catamphetamine/read-excel-file/issues"
},
"homepage": "https://github.com/catamphetamine/read-excel-file#readme"
}