forked from jchinkle/react-virtual-grid
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
76 lines (76 loc) · 2.62 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-virtual-grid",
"version": "0.1.1",
"description": "Virtual Grid for React",
"homepage": "http://github.com/fulcrumapp/react-virtual-grid",
"main": "dist/index.js",
"scripts": {
"prepublish": "npm run lint && npm run clean && npm run build",
"lint": "node_modules/.bin/eslint src/* src/**/*",
"build": "npm run build-lib && npm run build-test",
"build-lib": "node_modules/.bin/babel src --out-dir dist --source-maps",
"build-test": "node_modules/.bin/browserify -t envify -t babelify -t reactify --extension='.jsx' -g envify -g uglifyify -s Fulcrum test/index.js -o dist/test.js",
"watch": "node_modules/.bin/babel src --out-dir dist --source-maps --watch",
"watch-test": "node_modules/.bin/watchify --verbose -t envify -t babelify -t reactify --extension='.jsx' -g envify -s Fulcrum test/index.js -o dist/test.js",
"clean": "rm -rf dist && mkdir -p dist",
"serve": "./node_modules/.bin/serve -p 4007",
"check-deps": "node_modules/.bin/ncu",
"update-deps": "node_modules/.bin/ncu -u"
},
"author": "Zac McCormick <[email protected]> (http://github.com/zhm)",
"license": "BSD-3-Clause",
"repository": {
"type": "git",
"url": "git://github.com/fulcrumapp/react-virtual-grid.git"
},
"eslintConfig": {
"extends": "fulcrum"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-eslint": "^8.0.2",
"babel-plugin-css-in-js": "^1.4.0",
"babel-plugin-transform-proto-to-assign": "^6.26.0",
"babel-polyfill": "^6.26.0",
"babel-preset-es2015": "^6.16.0",
"babel-preset-es2015-loose": "^8.0.0",
"babel-preset-es2015-node5": "^1.2.0",
"babel-preset-react": "^6.16.0",
"babel-preset-stage-1": "^6.16.0",
"babelify": "^8.0.0",
"browserify": "^13.1.0",
"chai": "^3.5.0",
"envify": "^3.4.1",
"eslint": "^3.6.1",
"eslint-config-fulcrum": "^1.3.0",
"eslint-plugin-babel": "^3.3.0",
"eslint-plugin-react": "^6.3.0",
"glob": "^7.1.0",
"minifyify": "^7.3.3",
"react": "^15.3.2",
"react-addons-css-transition-group": "^15.3.2",
"react-dom": "^15.3.2",
"reactify": "^1.1.1",
"serve": "^6.4.1",
"should": "^11.1.0",
"source-map-support": "^0.4.2",
"to-source": "^2.0.3",
"uglify-js": "^2.7.3",
"uglifyify": "^3.0.3",
"watchify": "^3.7.0"
},
"peerDependencies": {},
"dependencies": {
"classnames": "^2.2.5",
"element-resize-detector": "^1.1.9",
"iscroll": "github:zhm/iscroll#larger-scrollbars-with-pointer-events",
"react-proptypes": "^1.0.0"
},
"keywords": [
"grid",
"table",
"data",
"tableview"
]
}