-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
71 lines (71 loc) · 1.69 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": "fusionexport-node-client",
"version": "2.0.0",
"description": "NodeJS SDK for FusionExport. Enables exporting from FusionExport through NodeJS.",
"keywords": [
"fusionexport",
"fusioncharts",
"client",
"sdk",
"export"
],
"homepage": "https://www.fusioncharts.com/fusionexport",
"license": "MIT",
"author": {
"name": "FusionCharts",
"email": "[email protected]",
"url": "https://www.fusioncharts.com"
},
"repository": {
"type": "git",
"url": "git+https://github.com/fusioncharts/fusionexport-node-client.git"
},
"scripts": {
"test": "mocha test/**/*.spec.js",
"prettify": "prettier --config ./.prettierrc --write '**/*.js'"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"pre-push": "npm test"
}
},
"lint-staged": {
"*.{js}": [
"eslint --fix",
"prettier --config ./.prettierrc --write"
]
},
"main": "index.js",
"dependencies": {
"adm-zip": "^0.4.11",
"common-path-prefix": "^1.0.0",
"form-data": "^3.0.0",
"fs-extra": "^5.0.0",
"glob": "^7.1.2",
"https": "^1.0.0",
"jsdom": "^11.5.1",
"lodash": "^4.17.15",
"minify": "^6.0.1",
"node-fetch": "^2.6.0",
"nodemailer": "^6.3.1",
"sync-rpc": "^1.3.6",
"tmp": "0.0.33",
"winston": "^2.4.0"
},
"devDependencies": {
"chai": "^4.2.0",
"eslint": "^4.8.2",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-config-prettier": "^6.10.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-prettier": "^3.1.2",
"husky": "^4.2.3",
"lint-staged": "^10.0.7",
"mocha": "^5.2.0",
"prettier": "^1.19.1"
},
"bundledDependencies": [
"winston"
]
}