-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
70 lines (70 loc) · 1.67 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
{
"name": "rexlsx",
"version": "0.0.2",
"description": "Create excel documents with React",
"main": "lib/index.js",
"scripts": {
"lint": "eslint --ext .js src test",
"build": "rimraf lib && NODE_ENV=production babel src -d lib",
"prepublish": "npm run build",
"test": "NODE_ENV=test nyc mocha --no-timeouts",
"report": "nyc report --reporter=html",
"coveralls": "nyc report --reporter=text-lcov | coveralls"
},
"nyc": {
"include": [
"src/**/*.js"
],
"require": [
"babel-register"
],
"sourceMap": false,
"instrument": false
},
"pre-commit": [
"lint"
],
"repository": {
"type": "git",
"url": "git+https://github.com/d-band/rexlsx.git"
},
"keywords": [
"better-xlsx",
"react",
"excel",
"fiber"
],
"author": "d-band",
"license": "MIT",
"bugs": {
"url": "https://github.com/d-band/rexlsx/issues"
},
"homepage": "https://github.com/d-band/rexlsx#readme",
"dependencies": {
"better-xlsx": "^0.6.0"
},
"peerDependencies": {
"react": "^16.0.0-beta.5",
"react-dom": "^16.0.0-beta.5"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-eslint": "^8.0.0",
"babel-plugin-istanbul": "^4.1.4",
"babel-preset-env": "^1.6.0",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"babel-register": "^6.26.0",
"chai": "^4.1.1",
"coveralls": "^3.0.0",
"eslint": "^4.5.0",
"eslint-config-airbnb-base": "^12.0.0",
"eslint-plugin-import": "^2.7.0",
"mocha": "^5.0.0",
"nyc": "^11.1.0",
"pre-commit": "^1.2.2",
"react": "^16.0.0-beta.5",
"react-dom": "^16.0.0-beta.5",
"rimraf": "^2.6.1"
}
}