-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 2 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 2 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
{
"name": "react-image-layout",
"version": "1.0.0",
"description": "A simple Pinterest style grid layout component for images",
"main": "dist/ImageLayout.min.js",
"jsnext:main": "src/ImageLayout.js",
"scripts": {
"build": "npm run clean && webpack --config webpack.config.js",
"clean": "rimraf dist lib",
"lint": "./node_modules/eslint/bin/eslint.js src",
"prepublish": "npm run build",
"start": "cd example && node server.js",
"test": "node_modules/.bin/karma start karma.config.js"
},
"devDependencies": {
"babel-core": "^6.3.13",
"babel-eslint": "^4.1.8",
"babel-loader": "^6.2.2",
"babel-polyfill": "^6.5.0",
"babel-preset-es2015": "^6.3.13",
"babel-preset-react": "^6.3.13",
"chai": "^3.5.0",
"chai-enzyme": "^0.4.0",
"cheerio": "^0.20.0",
"enzyme": "^1.6.0",
"eslint": "^1.6.0",
"eslint-loader": "^1.2.1",
"eslint-plugin-react": "^3.16.1",
"karma": "^0.13.19",
"karma-chai": "^0.1.0",
"karma-mocha": "^0.2.1",
"karma-phantomjs-launcher": "^1.0.0",
"karma-sourcemap-loader": "^0.3.7",
"karma-spec-reporter": "0.0.24",
"karma-webpack": "^1.7.0",
"mocha": "^2.4.5",
"phantomjs": "^2.1.3",
"phantomjs-polyfill": "0.0.1",
"phantomjs-prebuilt": "^2.1.4",
"react-addons-test-utils": "^0.14.7",
"react-dom": "^0.14.7",
"react-hot-loader": "^1.3.0",
"rimraf": "^2.4.4",
"sinon": "^1.17.3",
"webpack": "^1.12.13",
"webpack-dev-server": "^1.14.1",
"yargs": "^3.32.0"
},
"peerDependencies": {
"react": "^0.14.3"
},
"files": [
"dist/",
"src/"
],
"repository": {
"type": "git",
"url": "https://github.com/zackargyle/react-image-layout.git"
},
"keywords": [
"react",
"react-component"
],
"author": "Zack Argyle <zackargyle@pinterest.com> (http://zackargyle.com)",
"license": "ISC",
"bugs": {
"url": "https://github.com/zackargyle/react-image-layout/"
},
"homepage": "https://github.com/zackargyle/react-image-layout#readme"
}