-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
39 lines (39 loc) · 1010 Bytes
/
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
{
"name": "react-container-query-container",
"version": "1.1.0",
"description": "A higher-order react component enabling container queries today",
"main": "lib/index.js",
"jsnext:main": "es6/index.js",
"files": [
"css",
"es6",
"lib",
"umd"
],
"scripts": {
"build": "nwb build",
"clean": "nwb clean",
"start": "nwb serve",
"push_pages": "nwb build && git add . && git commit -m 'update demo' && git subtree push --prefix demo/dist/ origin gh-pages"
},
"dependencies": {},
"peerDependencies": {
"react": "^0.14.0 || ^15.0.0",
"cq-prolyfill": "^0.3.0"
},
"devDependencies": {
"nwb": "~0.4.1",
"cq-prolyfill": "^0.3.0",
"react": "~0.14.0 || ^15.0.0",
"react-dom": "~0.14.0 || ^15.0.0"
},
"author": "Vince Speelman",
"homepage": "",
"license": "MIT",
"repository": "https://github.com/VinSpee/react-container-query-container.git",
"keywords": [
"react-component",
"container queries",
"element queries"
]
}