-
Notifications
You must be signed in to change notification settings - Fork 19
/
package.json
71 lines (71 loc) · 2.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
{
"name": "xlsx-write-stream",
"version": "1.0.3",
"description": "XLSX stream writer",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"keywords": [
"apify",
"apifier",
"xlsx",
"stream"
],
"author": {
"name": "Apify",
"email": "[email protected]",
"url": "https://www.apify.com"
},
"contributors": [
"Jaroslav Hejlek <[email protected]>"
],
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git+https://github.com/apify/xlsx-stream"
},
"bugs": {
"url": "https://github.com/apify/xlsx-stream"
},
"homepage": "https://github.com/apify/xlsx-stream",
"files": [
"dist"
],
"scripts": {
"start": "npm run build && node dist/index.js",
"build": "npm run clean && tsc",
"test": "npm run build && mocha --require babel-core/register --recursive",
"test-cov": "npm run build && babel-node node_modules/isparta/bin/isparta cover --report html --report text node_modules/.bin/_mocha",
"prepare": "npm run build",
"clean": "rimraf dist",
"lint": "eslint src test"
},
"dependencies": {
"archiver": "^5.3.0",
"tslib": "^2.6.3"
},
"devDependencies": {
"@apify/tsconfig": "^0.1.0",
"@types/node": "^18.15.3",
"apify-jsdoc-template": "github:apify/apify-jsdoc-template",
"babel-cli": "^6.18.0",
"babel-core": "^6.26.0",
"babel-eslint": "^8.0.1",
"babel-preset-node8": "^1.2.0",
"chai": "^4.1.2",
"eslint": "^4.9.0",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-jsx-a11y": "6.0.2",
"eslint-plugin-mocha": "^4.11.0",
"eslint-plugin-promise": "^3.6.0",
"eslint-plugin-react": "7.4.0",
"glob": "^7.2.0",
"isparta": "^4.0.0",
"mocha": "^8.3.2",
"rimraf": "^3.0.2",
"sinon": "^4.0.1",
"sinon-stub-promise": "^4.0.0",
"typescript": "^5.4.5",
"unzipper": "^0.10.11"
}
}