forked from sheetjs/sheetjs
		
	Update README, bower, package
This commit is contained in:
		
							parent
							
								
									8801e76e3f
								
							
						
					
					
						commit
						0096c09dd3
					
				
							
								
								
									
										10
									
								
								README.md
									
									
									
									
									
								
							
							
								
								
								
								
								
									
									
								
							
						
						
									
										10
									
								
								README.md
									
									
									
									
									
								
							@ -3,6 +3,12 @@
 | 
			
		||||
Parser and writer for various spreadsheet formats.  Pure-JS cleanroom
 | 
			
		||||
implementation from official specifications and related documents.
 | 
			
		||||
 | 
			
		||||
**NOTE:** This project is a fork of the original (and awesome) [SheetJS/xlsx](https://github.com/SheetJS/js-xlsx) project.
 | 
			
		||||
It is extended to enable cell formats to be read from and written to .xlsx workbooks.
 | 
			
		||||
The intent is to provide a temporary means of using these features in practice, and ultimately to merge this into the primary project.
 | 
			
		||||
Report any issues to https://github.com/protobi/js-xlsx/issues.
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
Supported read formats:
 | 
			
		||||
 | 
			
		||||
- Excel 2007+ XML Formats (XLSX/XLSM)
 | 
			
		||||
@ -24,10 +30,10 @@ Source: <http://git.io/xlsx>
 | 
			
		||||
 | 
			
		||||
## Installation
 | 
			
		||||
 | 
			
		||||
With [npm](https://www.npmjs.org/package/xlsx):
 | 
			
		||||
With [npm](https://www.npmjs.org/package/xlsx-style):
 | 
			
		||||
 | 
			
		||||
```sh
 | 
			
		||||
npm install xlsx --save
 | 
			
		||||
npm install xlsx-style --save
 | 
			
		||||
```
 | 
			
		||||
 | 
			
		||||
In the browser:
 | 
			
		||||
 | 
			
		||||
@ -1,8 +1,8 @@
 | 
			
		||||
{
 | 
			
		||||
  "name": "js-xlsx",
 | 
			
		||||
  "homepage": "https://github.com/SheetJS/js-xlsx",
 | 
			
		||||
  "name": "js-xlsx-style",
 | 
			
		||||
  "homepage": "https://github.com/protobi/js-xlsx",
 | 
			
		||||
  "main": "dist/xlsx.js",
 | 
			
		||||
  "version": "0.8.0",
 | 
			
		||||
  "version": "0.8.2",
 | 
			
		||||
  "ignore": [
 | 
			
		||||
    "bin",
 | 
			
		||||
    "bits",
 | 
			
		||||
 | 
			
		||||
@ -2,14 +2,14 @@
 | 
			
		||||
	"name": "xlsx-style",
 | 
			
		||||
	"version": "0.8.0",
 | 
			
		||||
	"author": "sheetjs",
 | 
			
		||||
	"description": "Excel (XLSB/XLSX/XLSM/XLS/XML) and ODS spreadsheet parser and writer",
 | 
			
		||||
	"description": "Excel (XLSB/XLSX/XLSM/XLS/XML) and ODS spreadsheet parser and writer (extended to enable read/write of cell formats with xlsx files)",
 | 
			
		||||
	"keywords": [ "excel", "xls", "xlsx", "xlsb", "xlsm", "ods", "office", "spreadsheet" ],
 | 
			
		||||
	"bin": {
 | 
			
		||||
		"xlsx": "./bin/xlsx.njs"
 | 
			
		||||
	},
 | 
			
		||||
	"main": "./xlsx",
 | 
			
		||||
	"dependencies": {
 | 
			
		||||
		"ssf":"~0.8.1",
 | 
			
		||||
		"ssf":"~0.8.2",
 | 
			
		||||
		"codepage":"~1.3.6",
 | 
			
		||||
		"cfb":">=0.10.0",
 | 
			
		||||
		"jszip":"2.4.0",
 | 
			
		||||
@ -22,7 +22,7 @@
 | 
			
		||||
		"xlsjs":"",
 | 
			
		||||
		"uglify-js":""
 | 
			
		||||
	},
 | 
			
		||||
	"repository": { "type":"git", "url":"git://github.com/SheetJS/js-xlsx.git" },
 | 
			
		||||
	"repository": { "type":"git", "url":"git://github.com/protobi/js-xlsx.git" },
 | 
			
		||||
	"scripts": {
 | 
			
		||||
		"pretest": "git submodule init && git submodule update",
 | 
			
		||||
		"test": "make test"
 | 
			
		||||
@ -32,7 +32,7 @@
 | 
			
		||||
			"pattern": "xlsx.js"
 | 
			
		||||
		}
 | 
			
		||||
	},
 | 
			
		||||
	"bugs": { "url": "https://github.com/SheetJS/js-xlsx/issues" },
 | 
			
		||||
	"bugs": { "url": "https://github.com/protobi/js-xlsx/issues" },
 | 
			
		||||
	"license": "Apache-2.0",
 | 
			
		||||
	"engines": { "node": ">=0.8" }
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
		Loading…
	
		Reference in New Issue
	
	Block a user