forked from securedeveloper/react-data-export
-
Notifications
You must be signed in to change notification settings - Fork 91
/
package.json
76 lines (76 loc) · 2.24 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
72
73
74
75
76
{
"name": "react-export-excel",
"version": "0.5.3",
"main": "dist/index.js",
"description": "A tool to export dataset from react to excel format.",
"repository": {
"type": "git",
"url": "git+https://github.com/rdcalle/react-export-excel.git"
},
"keywords": [
"react-export-excel",
"react-data-export",
"react-dataset",
"react-export",
"react-excel-export"
],
"author": "Ricardo Díaz <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/rdcalle/react-export-excel/issues"
},
"homepage": "https://github.com/rdcalle/react-export-excel#readme",
"dependencies": {
"file-saver": "1.3.8",
"xlsx": "git+https://github.com/securedeveloper/js-xlsx.git"
},
"devDependencies": {
"@commitlint/cli": "6.1.3",
"@commitlint/config-conventional": "6.1.3",
"babel-cli": "6.26.0",
"babel-core": "6.26.0",
"babel-eslint": "8.0.1",
"babel-jest": "22.4.1",
"babel-plugin-transform-class-properties": "6.24.1",
"babel-preset-es2015": "6.24.1",
"babel-preset-react": "6.24.1",
"babel-register": "6.26.0",
"cross-env": "5.1.0",
"enzyme": "3.3.0",
"enzyme-adapter-react-16": "1.1.1",
"eslint": "4.8.0",
"eslint-plugin-import": "2.7.0",
"eslint-plugin-jest": "21.14.0",
"eslint-plugin-jsx-a11y": "6.0.2",
"eslint-plugin-react": "7.4.0",
"eslint-watch": "3.1.3",
"husky": "0.15.0-rc.13",
"jest": "22.4.2",
"jest-environment-jsdom": "22.4.1",
"jest-environment-jsdom-global": "1.0.3",
"jest-environment-node": "22.4.1",
"nyc": "11.2.1",
"prop-types": "15.6.0",
"react": "16.0.0",
"react-dom": "16.0.0",
"standard-version": "4.2.0"
},
"scripts": {
"release": "standard-version",
"test": "npm run lint && jest .",
"test:coverage": "nyc npm t",
"coverage:html": "nyc report --reporter=html",
"coverage:publish": "nyc report --reporter=lcov | codecov",
"clean": "rm -rf ./dist && mkdir ./dist",
"build": "npm run test && babel src --out-dir dist",
"build:watch": "babel -w src --out-dir dist",
"lint": "eslint .",
"lint:watch": "esw -w lib/**",
"prepare": "npm run build"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
}
}