spreadsheet
typeScript/javascript spreadsheet parser, with formulas.
git clone https://git.vogt.world/spreadsheet.git
Log | Files | README.md
← All files
name: package.json
-rw-r--r--
606
 1{
 2  "name": "js-spreadsheet",
 3  "version": "1.0.1",
 4  "description": "TypeScript/javascript implementation of a spreadsheet.",
 5  "scripts": {
 6    "clean": "rm -rf dist/* && rm -rf test_output/*",
 7    "build": "tsc",
 8    "docs": "./docs.sh src/Formulas",
 9    "test": "rm -rf test_output/* && ./tests.sh",
10    "test:quiet": "rm -rf test_output/* && ./tests.sh | grep -v Test:"
11  },
12  "author": "vogtb <bvogt at gmail.com>",
13  "license": "MIT",
14  "main": "dist/Sheet.js",
15  "dependencies": {
16    "moment": "^2.17.1"
17  },
18  "devDependencies": {
19    "typescript": "^2.3.2"
20  },
21  "types": "./dist/Sheet.d.ts"
22}