forked from bvaughn/react-virtualized
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
125 lines (125 loc) · 4.16 KB
/
package.json
File metadata and controls
125 lines (125 loc) · 4.16 KB
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
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
{
"name": "react-virtualized",
"description": "React components for efficiently rendering large, scrollable lists and tabular data",
"author": "Brian Vaughn <brian.david.vaughn@gmail.com>",
"user": "bvaughn",
"version": "5.5.0",
"homepage": "https://github.com/bvaughn/react-virtualized",
"main": "dist/commonjs/index.js",
"jsnext:main": "dist/es/index.js",
"license": "MIT",
"scripts": {
"build": "npm run build:commonjs && npm run build:css && npm run build:es && npm run build:demo && npm run build:umd",
"build:commonjs": "npm run clean:commonjs && cross-env NODE_ENV=production cross-env BABEL_ENV=commonjs babel source --out-dir dist/commonjs --ignore *.example.js,*.test.js,source/demo/,source/tests.js",
"build:css": "postcss --use autoprefixer source/styles.css > styles.css",
"build:demo": "npm run clean:demo && cross-env NODE_ENV=production webpack --config webpack.config.demo.js -p --bail",
"build:es": "npm run clean:es && cross-env NODE_ENV=production cross-env BABEL_ENV=es babel source --out-dir dist/es --ignore *.example.js,*.test.js,source/demo/,source/tests.js",
"build:umd": "npm run clean:umd && cross-env NODE_ENV=production webpack --config webpack.config.umd.js --bail",
"clean": "npm run clean:commonjs && npm run clean:demo && npm run clean:es && npm run clean:umd",
"clean:commonjs": "rimraf dist/commonjs",
"clean:demo": "rimraf build",
"clean:es": "rimraf dist/es",
"clean:umd": "rimraf dist/umd",
"deploy": "gh-pages -d build",
"lint": "standard",
"prebuild": "npm run lint",
"postpublish": "npm run deploy",
"prepublish": "npm run build",
"start": "webpack-dev-server --hot --inline --config webpack.config.dev.js",
"test": "npm run lint && npm run test:unit",
"test:unit": "cross-env NODE_ENV=test babel-node source/tests.js | tap-spec",
"watch": "watch 'clear && npm run lint -s && npm run test -s' source"
},
"repository": {
"type": "git",
"url": "https://github.com/bvaughn/react-virtualized.git"
},
"keywords": [
"react",
"reactjs",
"react-component",
"virtual",
"list",
"scrolling",
"infinite",
"virtualized",
"table",
"fixed",
"header",
"flex",
"flexbox"
],
"bugs": {
"url": "https://github.com/bvaughn/react-virtualized/issues"
},
"standard": {
"parser": "babel-eslint",
"ignore": [
"dist",
"playground",
"source/vendor"
],
"global": [
"getComputedStyle"
]
},
"devDependencies": {
"autoprefixer": "^6.2.3",
"babel-cli": "6.5.1",
"babel-core": "^6.5.1",
"babel-eslint": "^5.0.0",
"babel-loader": "^6.2.3",
"babel-plugin-react-transform": "^2.0.0",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-plugin-typecheck": "^3.6.1",
"babel-polyfill": "^6.5.0",
"babel-preset-es2015": "^6.5.0",
"babel-preset-es2015-rollup": "^1.1.1",
"babel-preset-react": "^6.5.0",
"babel-preset-stage-0": "^6.5.0",
"bluebird": "^3.0.5",
"cross-env": "^1.0.7",
"css-loader": "^0.23.0",
"enzyme": "^2.0.0",
"express": "^4.13.3",
"extract-text-webpack-plugin": "^1.0.1",
"faucet": "0.0.1",
"file-loader": "^0.8.5",
"fs-extra": "^0.26.2",
"gh-pages": "^0.6.0",
"glob": "^7.0.3",
"html-webpack-plugin": "^1.7.0",
"immutable": "^3.7.5",
"jsdom": "^8.1.0",
"karma": "^0.13.15",
"karma-junit-reporter": "^0.3.8",
"karma-sourcemap-loader": "^0.3.6",
"karma-spec-reporter": "0.0.23",
"karma-webpack": "^1.7.0",
"postcss": "^5.0.14",
"postcss-cli": "^2.3.3",
"postcss-loader": "^0.8.0",
"react": "^0.14.3",
"react-addons-test-utils": "^0.14.3",
"react-dom": "^0.14.3",
"react-transform-catch-errors": "^1.0.2",
"react-transform-hmr": "^1.0.2",
"redbox-react": "^1.0.1",
"rimraf": "^2.4.3",
"standard": "^5.4.1",
"style-loader": "^0.13.0",
"tape": "^4.5.0",
"watch": "^0.16.0",
"webpack": "^1.9.6",
"webpack-dev-server": "^1.14.0"
},
"dependencies": {
"classnames": "^2.2.3",
"raf": "^3.1.0",
"react-pure-render": "^1.0.2"
},
"peerDependencies": {
"react": "^0.14.0",
"react-dom": "^0.14.3"
}
}