UNPKG

1.85 kBJSONView Raw
1{
2 "name": "xlsx",
3 "version": "0.17.4",
4 "author": "sheetjs",
5 "description": "SheetJS Spreadsheet data parser and writer",
6 "keywords": [
7 "excel",
8 "xls",
9 "xlsx",
10 "xlsb",
11 "xlsm",
12 "ods",
13 "csv",
14 "dbf",
15 "dif",
16 "sylk",
17 "office",
18 "spreadsheet"
19 ],
20 "bin": {
21 "xlsx": "./bin/xlsx.njs"
22 },
23 "main": "xlsx.js",
24 "unpkg": "dist/xlsx.full.min.js",
25 "jsdelivr": "dist/xlsx.full.min.js",
26 "types": "types/index.d.ts",
27 "browser": {
28 "buffer": false,
29 "crypto": false,
30 "stream": false,
31 "process": false,
32 "fs": false
33 },
34 "dependencies": {
35 "adler-32": "~1.2.0",
36 "cfb": "^1.1.4",
37 "codepage": "~1.15.0",
38 "crc-32": "~1.2.0",
39 "ssf": "~0.11.2",
40 "wmf": "~1.0.1",
41 "word": "~0.3.0"
42 },
43 "devDependencies": {
44 "@sheetjs/uglify-js": "~2.7.3",
45 "@types/node": "^8.5.9",
46 "acorn": "7.4.1",
47 "alex": "^9.1.0",
48 "blanket": "~1.2.3",
49 "commander": "~2.17.1",
50 "dtslint": "^0.1.2",
51 "eslint": "7.23.0",
52 "eslint-plugin-html": "^6.1.2",
53 "eslint-plugin-json": "^2.1.2",
54 "exit-on-epipe": "~1.0.1",
55 "fflate": "^0.7.1",
56 "jsdom": "~11.1.0",
57 "markdown-spellcheck": "^1.3.1",
58 "mocha": "~2.5.3",
59 "sinon": "^1.17.7",
60 "typescript": "2.2.0"
61 },
62 "repository": {
63 "type": "git",
64 "url": "git://github.com/SheetJS/sheetjs.git"
65 },
66 "scripts": {
67 "pretest": "npm run lint",
68 "test": "npm run tests-only",
69 "pretest-only": "git submodule init && git submodule update",
70 "tests-only": "make travis",
71 "build": "make",
72 "lint": "make fullint",
73 "dtslint": "dtslint types"
74 },
75 "config": {
76 "blanket": {
77 "pattern": "xlsx.js"
78 }
79 },
80 "alex": {
81 "allow": [
82 "chinese",
83 "special",
84 "simple",
85 "just",
86 "crash",
87 "wtf",
88 "holes"
89 ]
90 },
91 "homepage": "https://sheetjs.com/",
92 "bugs": {
93 "url": "https://github.com/SheetJS/sheetjs/issues"
94 },
95 "license": "Apache-2.0",
96 "engines": {
97 "node": ">=0.8"
98 }
99}