-
Notifications
You must be signed in to change notification settings - Fork 113
/
Copy pathpackage.json
executable file
·71 lines (71 loc) · 1.8 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": "table2excel",
"version": "1.0.4",
"description": "convert and download html tables to a xlsx-file that can be opened in Microsoft Excel",
"keywords": [
"html table",
"table",
"export",
"convert",
"download",
"file",
"xls",
"xlsx",
"microsoft",
"excel"
],
"author": {
"name": "Matthias Fey",
"email": "[email protected]",
"url": "http://rusty1s.github.io"
},
"repository": {
"type": "git",
"url": "git://github.com/rusty1s/table2excel.git"
},
"license": "MIT",
"licenses": [
{
"type": "MIT",
"url": "http://www.opensource.org/licenses/MIT"
}
],
"readmeFilename": "README.md",
"bugs": {
"url": "http://github.com/rusty1s/table2excel/issues"
},
"main": "dist/table2excel.js",
"scripts": {
"start": "webpack",
"lint": "eslint webpack.config.babel.js src test",
"test": "npm start && mocha --compilers js:babel-register"
},
"devDependencies": {
"babel-core": "^6.10.4",
"babel-loader": "^6.2.4",
"babel-plugin-transform-array-from": "^1.0.0",
"babel-plugin-transform-object-assign": "^6.8.0",
"babel-plugin-transform-runtime": "^6.9.0",
"babel-plugin-transform-strict-mode": "^6.11.3",
"babel-polyfill": "^6.9.1",
"babel-preset-es2015": "^6.9.0",
"babel-register": "^6.9.0",
"babel-runtime": "^6.9.2",
"chai": "^3.5.0",
"eslint": "^2.9.0",
"eslint-config-airbnb": "^9.0.1",
"eslint-plugin-import": "^1.10.2",
"eslint-plugin-jsx-a11y": "^1.2.2",
"eslint-plugin-react": "^5.2.2",
"jsdom": "^9.4.1",
"jsdom-global": "^2.0.0",
"mocha": "^3.0.0",
"mocha-jsdom": "^1.1.0",
"script-loader": "^0.7.0",
"webpack": "^1.13.1"
},
"dependencies": {
"filesaver.js": "^0.2.0",
"xlsx-style": "^0.8.13"
}
}