-
Notifications
You must be signed in to change notification settings - Fork 60
/
package.json
67 lines (67 loc) · 2.01 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
{
"name": "react-html-table-to-excel",
"version": "2.0.0",
"description": "Small react component for converting and downloading HTML table to Excel file",
"main": "index.js",
"scripts": {
"build": "./node_modules/.bin/babel ./src/ReactHTMLTableToExcel.jsx -o index.js",
"prepublish": "npm run build",
"client:test": "NODE_ENV=test jest",
"client:test:watch": "NODE_ENV=test jest --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/zsusac/ReactHTMLTableToExcel.git"
},
"keywords": [
"react",
"excel",
"table",
"html",
"xls"
],
"author": "Zvonimir Susac <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/zsusac/ReactHTMLTableToExcel/issues"
},
"homepage": "https://github.com/zsusac/ReactHTMLTableToExcel#readme",
"jest": {
"rootDir": "./",
"moduleNameMapper": {
"^.+\\.(css|less)$": "<rootDir>/CSSStub.js"
},
"collectCoverage": true,
"coverageDirectory": "<rootDir>/../../coverage",
"verbose": true,
"coveragePathIgnorePatterns": [
"<rootDir>/../../node_modules/"
]
},
"peerDependencies": {
"react": "^15.x.x"
},
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-eslint": "^7.2.3",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"chai": "^3.5.0",
"chai-enzyme": "^0.6.1",
"enzyme": "^2.8.2",
"eslint": "^3.19.0",
"eslint-config-airbnb": "^14.1.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^5.0.1",
"eslint-plugin-react": "^7.0.0",
"jest": "^20.0.1",
"react": "^15.5.4",
"react-dom": "^15.5.4",
"react-test-renderer": "^15.5.4",
"sinon": "^2.2.0"
},
"dependencies": {
"prop-types": "^15.5.10"
}
}