forked from egeriis/zipcelx
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.11 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.11 KB
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
{
"name": "zipcelx",
"version": "1.2.0",
"description": "JSON Transformer to create .xlsx files",
"main": "lib/zipcelx.js",
"scripts": {
"test": "jest",
"test:dev": "jest --watch",
"lint": "eslint . ./",
"build": "jest && eslint . ./ && babel ./src -d lib"
},
"jest": {
"verbose": true,
"transform": {
".js": "./node_modules/babel-jest"
}
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/dixieio/zipcelx.git"
},
"keywords": [
"JSON",
"Excel",
"xlsx"
],
"author": "Lars Krieger",
"license": "MIT",
"bugs": {
"url": "https://github.com/dixieio/zipcelx/issues"
},
"homepage": "https://github.com/dixieio/zipcelx#readme",
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-core": "^6.23.1",
"babel-eslint": "^7.1.1",
"babel-jest": "^19.0.0",
"babel-preset-es2015": "^6.22.0",
"eslint": "^3.16.0",
"eslint-config-airbnb": "^14.1.0",
"eslint-plugin-import": "^2.2.0",
"jest": "^19.0.1"
},
"dependencies": {
"file-saver": "^1.3.3",
"jszip": "^3.1.3",
"lodash.escape": "^4.0.1"
}
}