-
Notifications
You must be signed in to change notification settings - Fork 39
/
package.json
37 lines (37 loc) · 920 Bytes
/
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
{
"name": "react-infinite-grid",
"version": "0.4.0",
"description": "An React grid component which can handle rendering large amounts of data.",
"author": "Gordan Grasarevic <[email protected]>",
"main": "dist/grid.js",
"repository": {
"type": "git",
"url": "https://github.com/ggordan/react-infinite-grid"
},
"keywords": [
"react-component",
"react",
"grid",
"infinite"
],
"license": "MIT",
"dependencies": {
"lodash": "^3.10.1",
"react": "^0.14.2",
"react-dom": "^0.14.2"
},
"devDependencies": {
"babel": "^6.1.18",
"babel-cli": "^6.1.18",
"babel-core": "^6.1.20",
"babel-eslint": "^4.1.3",
"babel-loader": "^6.1.0",
"babel-preset-es2015": "^6.1.18",
"babel-preset-react": "^6.1.18",
"rimraf": "^2.4.3",
"webpack": "^1.7.3"
},
"scripts": {
"build": "rimraf dist && babel ./src -d dist --presets=react,es2015"
}
}