forked from pbeshai/react-taco-table
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
104 lines (104 loc) · 2.78 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
{
"name": "react-taco-table",
"version": "0.4.1",
"description": "A react component for creating tables configured by a set of columns.",
"main": "lib/index.js",
"scripts": {
"build-all": "npm run build && npm run docs && npm run site-build",
"build": "grunt build",
"docs": "jsdoc --configure .jsdoc.json --readme README.md",
"gh-pages": "gh-pages-deploy",
"site-build": "grunt site-build",
"test": "ENV=test karma start .karma.conf.js"
},
"gh-pages-deploy": {
"staticpath": "site/dist",
"prep": [
"docs",
"site-build"
]
},
"author": {
"name": "Peter Beshai",
"uri": "https://github.com/pbeshai"
},
"repository": {
"type": "git",
"url": "git+https://github.com/pbeshai/react-taco-table.git"
},
"license": "MIT",
"dependencies": {
"classnames": "^2.2.5",
"d3-format": "^1.0.0",
"d3-scale": "^1.0.0",
"d3-scale-chromatic": "^1.0.0",
"lodash.curry": "^4.0.1",
"stable": "^0.1.5"
},
"devDependencies": {
"babel": "^6.5.2",
"babel-core": "^6.14.0",
"babel-loader": "^6.2.5",
"babel-preset-es2015": "^6.14.0",
"babel-preset-react": "^6.11.1",
"babel-preset-react-hmre": "^1.1.1",
"baggage-loader": "^0.2.4",
"chai": "^3.5.0",
"css-loader": "^0.23.1",
"enzyme": "^2.4.1",
"eslint": "^2.10.2",
"eslint-config-airbnb": "^9.0.1",
"eslint-plugin-import": "^1.10.0",
"eslint-plugin-jsx-a11y": "^1.4.2",
"eslint-plugin-react": "^5.1.1",
"extract-text-webpack-plugin": "^1.0.1",
"grunt": "^1.0.1",
"grunt-babel": "^6.0.0",
"grunt-contrib-clean": "^1.0.0",
"grunt-contrib-compress": "^1.2.0",
"grunt-contrib-copy": "^1.0.0",
"grunt-sass": "^1.2.0",
"grunt-shell": "^1.3.0",
"grunt-webpack": "^1.0.11",
"html-webpack-plugin": "^2.16.0",
"jsdoc": "^3.4.0",
"json-loader": "^0.5.4",
"karma": "^1.2.0",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^2.0.0",
"karma-mocha": "^1.1.1",
"karma-sinon-chai": "^1.2.3",
"karma-sourcemap-loader": "^0.3.7",
"karma-webpack": "^1.8.0",
"lolex": "^1.5.0",
"mocha": "^3.0.2",
"node-sass": "^3.7.0",
"null-loader": "^0.1.1",
"pbeshai/minami": "^1.1.1",
"raw-loader": "^0.5.1",
"react": "^15.1.0",
"react-addons-perf": "^15.1.0",
"react-addons-shallow-compare": "^15.1.0",
"react-addons-test-utils": "^15.1.0",
"react-dom": "^15.1.0",
"sass-loader": "^3.2.3",
"sinon": "^1.17.5",
"sinon-chai": "^2.8.0",
"style-loader": "^0.13.1",
"webpack": "^1.13.2",
"webpack-dev-server": "^1.15.1"
},
"peerDependencies": {
"react": "^15.0",
"react-dom": "^15.0"
},
"keywords": [
"table",
"component",
"react",
"react-component",
"ui",
"data table",
"heatmap"
]
}