-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.89 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.89 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
{
"name": "enhance-multi-grid",
"version": "1.0.0",
"description": "enchanced multi-grid for react-virtualized",
"main": "dist/commonjs",
"scripts": {
"demo": "./node_modules/.bin/webpack-dev-server --config=./webpack.config.demo.js --progress --colors",
"build": "npm run build:commonjs && npm run build:umd",
"build:commonjs": "npm run clean:commonjs && cross-env NODE_ENV=production cross-env BABEL_ENV=commonjs ./node_modules/.bin/babel src --out-dir dist/commonjs --ignore *.example.js,*.test.js,source/demo/,source/tests.js",
"build:umd": "npm run clean:umd && cross-env NODE_ENV=production ./node_modules/.bin/webpack --config webpack.config.umd.js --bail",
"clean:commonjs": "rimraf dist/commonjs",
"clean:umd": "rimraf dist/umd",
"prepublish": "npm run build"
},
"keywords": [
"enchanced",
"multi-grid",
"react-virtualized"
],
"author": "dane.ding<270422767@qq.com>",
"license": "ISC",
"dependencies": {
"prop-types": "^15.5.10",
"react": "^15.6.1",
"react-dom": "^15.6.1",
"react-virtualized": "^9.9.0",
"recompose": "^0.25.0",
"uuid": "^3.1.0"
},
"devDependencies": {
"autoprefixer": "^6.5.0",
"babel-core": "^6.14.0",
"babel-loader": "^6.2.5",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-es2015": "^6.14.0",
"babel-preset-react": "^6.11.1",
"better-npm-run": "0.0.11",
"clean-webpack-plugin": "^0.1.9",
"css-loader": "^0.25.0",
"extract-text-webpack-plugin": "^1.0.1",
"file-loader": "^0.9.0",
"html-webpack-plugin": "^2.21.0",
"node-sass": "^3.10.0",
"postcss-loader": "^0.13.0",
"sass-loader": "^4.0.2",
"style-loader": "^0.13.1",
"url-loader": "^0.5.7",
"webpack": "^1.13.2",
"webpack-dev-server": "^1.15.2",
"babel-preset-env": "^1.6.0",
"rimraf": "^2.4.3",
"cross-env": "^1.0.7",
"babel-cli": "6.8.0"
}
}