-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
65 lines (65 loc) · 1.54 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
{
"name": "ts-xlsx",
"version": "0.0.11",
"description": "A working XLSX Library for typescript (Rebuild of the original xlsx)",
"main": "lib/main.js",
"typings": "lib/main.d.ts",
"jam": {
"main": "./lib/main.browser.js"
},
"browser": {
"lib/main.js": "./lib/main.browser.js"
},
"scripts": {
"typings": "typings install",
"prebuild": "npm install && npm run typings",
"build": "webpack || echo not ok",
"build:test": "npm run build && webpack --config webpack.config.test.js",
"test": "npm run build:test && mocha build/test.js",
"pack": "npm run test && npm pack"
},
"repository": {
"type": "git",
"url": "git+https://github.com/DxCx/ts-xlsx.git"
},
"keywords": [
"xlsx",
"typescript",
"xls",
"excel",
"office",
"angular 2",
"spreadsheet",
"ods",
"xlsm",
"xlsb",
"xlsx"
],
"author": "Hagai Cohen",
"license": "MIT",
"bugs": {
"url": "https://github.com/DxCx/ts-xlsx/issues"
},
"homepage": "https://github.com/DxCx/ts-xlsx#readme",
"dependencies": {
"@types/xlsx": "0.0.34"
},
"devDependencies": {
"babel-core": "^6.23.1",
"babel-loader": "^6.3.0",
"babel-preset-es2015": "^6.22.0",
"browserify": "^14.1.0",
"chai": "^3.5.0",
"delete-empty": "^0.1.3",
"dts-bundle": "^0.7.2",
"mocha": "^3.2.0",
"ts-loader": "^2.0.0",
"tslint": "^3.15.1",
"tslint-loader": "^2.1.5",
"typescript": "^2.1.6",
"typings": "^2.1.0",
"webpack": "^1.13.1",
"jszip": "2.4.0",
"xlsx": "^0.10.1"
}
}