-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.84 KB
/
Copy pathpackage.json
File metadata and controls
60 lines (60 loc) · 1.84 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
50
51
52
53
54
55
56
57
58
59
60
{
"name": "fusionexport-javascript-client",
"version": "1.0.0",
"description": "Javascript SDK for FusionExport. Enables exporting from browser using FusionExport.",
"main": "./dist/index.min.js",
"scripts": {
"build": "WEBPACK_ENV=production webpack --config webpack.config.js --progress",
"build:example": "webpack --config example/webpack.config.js --progress",
"dev": "webpack --config webpack.config.js --progress --watch",
"test": "SINGLE_RUN=true karma start karma.config.js",
"test:watch": "karma start karma.config.js"
},
"husky": {
"hooks": {
"pre-push": "npm test"
}
},
"author": {
"name": "FusionCharts",
"email": "buy@fusioncharts.com",
"url": "https://www.fusioncharts.com"
},
"license": "MIT",
"homepage": "https://www.fusioncharts.com/fusionexport",
"repository": {
"type": "git",
"url": "https://github.com/fusioncharts/fusionexport-javascript-client"
},
"devDependencies": {
"@babel/core": "^7.2.2",
"@babel/plugin-transform-modules-umd": "^7.2.0",
"@babel/preset-env": "^7.2.3",
"babel-loader": "^8.0.5",
"babel-plugin-add-module-exports": "^1.0.0",
"babel-plugin-rewire": "^1.2.0",
"chai": "^4.2.0",
"eslint": "^5.12.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-plugin-import": "^2.14.0",
"html-webpack-plugin": "^3.2.0",
"husky": "^1.3.1",
"inject-loader": "^4.0.1",
"karma": "^4.0.1",
"karma-chrome-launcher": "^2.2.0",
"karma-firefox-launcher": "^1.1.0",
"karma-mocha": "^1.3.0",
"karma-sourcemap-loader": "^0.3.7",
"karma-webpack": "^3.0.5",
"mocha": "^5.2.0",
"raw-loader": "^1.0.0",
"sinon": "^7.2.4",
"webpack": "^4.28.4",
"webpack-cli": "^3.2.1",
"webpack-merge": "^4.2.1"
},
"dependencies": {
"downloadjs": "^1.4.7",
"lodash.clonedeep": "^4.5.0"
}
}