forked from karthicashokan/react-expandable-grid
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·44 lines (44 loc) · 1.12 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
{
"name": "react-expandable-grid",
"version": "1.0.3",
"description": "Image grid with an expanding detail view",
"main": "lib/index.js",
"repository": {
"type": "git",
"url": "https://github.com/karthicashokan/react-expandable-grid.git"
},
"bugs": {
"url": "https://github.com/karthicashokan/react-expandable-grid.git"
},
"homepage": "https://github.com/karthicashokan/react-expandable-grid.git",
"scripts": {
"start": "./node_modules/.bin/babel src --watch --out-dir lib",
"build": "./node_modules/.bin/babel src --out-dir lib",
"test": "mocha --compilers js:babel/register",
"prepublish": "rm -rf lib && npm run build"
},
"keywords": [
"react",
"gallery",
"grid",
"portfolio",
"expandable",
"preview",
"thumbnail"
],
"author": "Karthic Ashokan <karthicashokan@icloud.com>",
"license": "MIT",
"peerDependencies": {
"react": "^16.0.0",
"react-dom": "^16.0.0"
},
"dependencies": {
"object-assign": "^4.0.1"
},
"devDependencies": {
"babel": "^5.8.21",
"mocha": "^2.3.3",
"react": "^16.2.0",
"react-dom": "^16.2.0"
}
}