-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
66 lines (66 loc) · 2.4 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
{
"name": "react-inline-grid",
"description": "A predictable gird layout based on flexbox for React.",
"main": "./lib/index.js",
"version": "0.5.3",
"scripts": {
"clean": "rimraf lib dist coverage",
"lint": "eslint src test examples",
"build:lib": "babel src --out-dir lib",
"build:umd": "webpack src/index.js dist/react-inline-grid.js --config webpack.config.development.js",
"build:umd:min": "webpack src/index.js dist/react-inline-grid.min.js --config webpack.config.production.js",
"build": "npm run build:lib && npm run build:umd && npm run build:umd:min",
"prepublish": "npm run clean && npm run build",
"gh:clean": "rimraf examples/gh-pages/dist",
"gh:build": "webpack -p --config examples/gh-pages/webpack.config.production.js && cp examples/gh-pages/index.html examples/gh-pages/dist/",
"gh:publish": "npm run gh:clean && npm run gh:build && cd examples/gh-pages/dist && git init && git commit --allow-empty -m 'update gh-pages' && git checkout -b gh-pages && git add . && git commit -am 'update gh-pages' && git push [email protected]:broucz/react-inline-grid gh-pages --force",
"test": "mocha --compilers js:babel/register --recursive",
"test:watch": "npm test -- --watch",
"test:cov": "babel-node $(npm bin)/isparta cover $(npm bin)/_mocha -- --recursive"
},
"repository": {
"type": "git",
"url": "git+https://github.com/broucz/react-inline-grid.git"
},
"keywords": [
"react",
"reactjs",
"grid",
"inline",
"style",
"flux",
"redux",
"predictable",
"react-component"
],
"author": "Pierre Brouca <[email protected]> (https://github.com/broucz)",
"license": "MIT",
"bugs": {
"url": "https://github.com/broucz/react-inline-grid/issues"
},
"homepage": "https://github.com/broucz/react-inline-grid",
"dependencies": {
"lodash": "^3.10.1",
"react-redux": "^2.1.1",
"redux": "^2.0.0"
},
"peerDependencies": {
"react": "^0.14.0 || ^0.14.0-beta3 || ^0.14.0-rc1"
},
"devDependencies": {
"babel": "^5.8.21",
"babel-core": "^5.8.22",
"babel-eslint": "^4.0.10",
"babel-loader": "^5.3.2",
"eslint": "^1.2.0",
"eslint-config-airbnb": "0.0.7",
"eslint-plugin-react": "^3.2.3",
"expect": "^1.9.0",
"isparta": "^3.0.3",
"mocha": "^2.2.5",
"react-hot-loader": "^1.2.8",
"rimraf": "^2.4.2",
"webpack": "^1.11.0",
"webpack-dev-server": "^1.10.1"
}
}