forked from roylee0704/react-flexbox-grid
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
89 lines (89 loc) · 2.7 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
{
"name": "react-flexbox-grid",
"description": "A set of React components implementing flexboxgrid with the power of CSS Modules",
"homepage": "https://github.com/roylee0704/react-flexbox-grid",
"version": "0.9.5",
"main": "lib/index.js",
"author": "Roy Lee <[email protected]>",
"repository": {
"type": "git",
"url": "git://github.com/roylee0704/react-flexbox-grid.git"
},
"bugs": {
"url": "https://github.com/roylee0704/react-flexbox-grid/issues"
},
"keywords": [
"react-component",
"flexbox",
"grid",
"react"
],
"peerDependencies": {
"babel-polyfill": ">=6.0.0",
"classnames": ">=2.1.2",
"flexboxgrid": "^6.3.0",
"react": "^0.14.3"
},
"devDependencies": {
"autoprefixer": "^6.0.3",
"babel-cli": "^6.4.0",
"babel-core": "^6.4.0",
"babel-eslint": "^5.0.0-beta6",
"babel-loader": "^6.2.1",
"babel-plugin-react-transform": "^2.0.0",
"babel-polyfill": "^6.3.14",
"babel-preset-es2015-loose": "^6.1.4",
"babel-preset-react": "^6.3.13",
"babel-preset-react-hmre": "^1.0.1",
"babel-preset-stage-0": "^6.3.13",
"classnames": ">=2.1.2",
"cpx": "^1.2.1",
"cross-env": "^1.0.4",
"css-loader": "^0.21.0",
"eslint": "^1.10.1",
"eslint-config-airbnb": "^1.0.0",
"eslint-plugin-react": "^3.10.0",
"expect": "^1.13.0",
"express": "^4.13.3",
"extract-text-webpack-plugin": "^0.8.2",
"flexboxgrid": "^6.3.0",
"isparta": "^4.0.0",
"jsdom": "^7.0.2",
"karma": "^0.13.3",
"karma-chrome-launcher": "^0.2.0",
"karma-cli": "^0.1.0",
"karma-mocha": "^0.2.0",
"karma-phantomjs-launcher": "~0.2",
"karma-webpack": "^1.7.0",
"mocha": "^2.3.4",
"node-sass": "^3.4.2",
"phantomjs": "^1.9.19",
"phantomjs-polyfill": "0.0.1",
"postcss-loader": "^0.7.0",
"react": "^0.14.3",
"react-addons-test-utils": "^0.14.0",
"react-dom": "^0.14.3",
"react-hot-loader": "^1.3.0",
"redbox-react": "^1.1.1",
"rimraf": "^2.4.4",
"sass-loader": "^3.1.2",
"style-loader": "^0.12.3",
"webpack": "^1.12.9",
"webpack-dev-middleware": "^1.4.0",
"webpack-hot-middleware": "^2.4.1"
},
"scripts": {
"compile": "./node_modules/.bin/babel -d ./lib ./src",
"build": "cross-env NODE_ENV=production npm run compile",
"clean": "rimraf ./lib",
"lint": "eslint src test",
"patch": "bumped release patch",
"prebuild": "npm run clean",
"prepublish": "npm run build",
"release": "bumped release",
"start": "cross-env NODE_ENV=development UV_THREADPOOL_SIZE=100 node ./server",
"test": "cross-env NODE_ENV=test karma start",
"test:watch": "cross-env NODE_ENV=test karma start --no-single-run"
},
"license": "MIT"
}