-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
52 lines (52 loc) · 1.6 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
{
"name": "react-component-gallery",
"description": "React component for laying out an evenly spaced gallery of child components",
"version": "1.2.1",
"author": "Kyle Mathews <[email protected]>",
"bugs": {
"url": "https://github.com/KyleAMathews/react-component-gallery/issues"
},
"dependencies": {
"isarray": "0.0.1",
"object-assign": "^2.0.0",
"react-component-width-mixin": "^1.1.7"
},
"devDependencies": {
"chai": "^2.3.0",
"cjsx-loader": "^2.0.1",
"coffee-loader": "^0.7.2",
"coffee-react": "^3.1.0",
"coffee-script": "^1.9.2",
"css-loader": "^0.12.0",
"gulp": "^3.8.11",
"mocha": "^2.2.4",
"mocha-unfunk-reporter": "^0.4.0",
"pre-commit": "^1.0.7",
"react-hot-loader": "^1.2.6",
"react-responsive-grid": "^0.1.2",
"style-loader": "^0.12.1",
"underscore": "^1.8.3",
"webpack": "^1.8.11",
"webpack-dev-server": "^1.8.2"
},
"homepage": "https://github.com/KyleAMathews/react-component-gallery",
"keywords": [
"grid",
"react",
"react-component"
],
"license": "MIT",
"main": "dist/index.js",
"peerDependencies": {
"react": "*"
},
"repository": {
"type": "git",
"url": "https://github.com/KyleAMathews/react-component-gallery.git"
},
"scripts": {
"test": "NODE_ENV=test node_modules/.bin/mocha --recursive --compilers coffee:coffee-script/register -R mocha-unfunk-reporter",
"test-watch": "NODE_ENV=test node_modules/.bin/mocha -w --recursive --compilers coffee:coffee-script/register -R mocha-unfunk-reporter",
"watch": "./node_modules/.bin/webpack-dev-server --hot"
}
}