-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
54 lines (54 loc) · 1.42 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
{
"name": "react-media-queries",
"version": "2.0.1",
"description": "provider and decorator to manage media queries with react",
"main": "lib/index.js",
"files": [
"lib",
"package.json",
"README.md",
"LICENSE"
],
"scripts": {
"start": "babel --stage 0 src --out-dir lib --ignore '__tests__'",
"lint": "eslint src/**.js && eslint examples/**.js",
"examples": "babel-node --stage 0 ./scripts/webpack/examples",
"test": "npm run lint && babel-node --stage 0 ./scripts/webpack/test.js"
},
"repository": {
"type": "git",
"url": "git@github.com:bloodyowl/react-media-queries"
},
"keywords": [
"react",
"media-query",
"inline-styles"
],
"author": "bloodyowl",
"license": "MIT",
"bugs": {
"url": "https://github.com/bloodyowl/react-media-queries/issues"
},
"homepage": "https://github.com/bloodyowl/react-media-queries",
"peerDependencies": {
"react": "^0.14.0"
},
"devDependencies": {
"babel": "^5.8.23",
"babel-core": "^5.8.25",
"babel-eslint": "^4.1.3",
"babel-loader": "^5.3.2",
"eslint": "^1.7.3",
"eslint-plugin-react": "^3.6.3",
"file-loader": "^0.8.4",
"react": "^0.14.0",
"react-dom": "^0.14.0",
"react-test-utils": "0.0.1",
"stile": "^1.0.0",
"tape": "^4.2.1",
"tape-catch": "^1.0.4",
"webpack": "^1.12.2",
"webpack-dev-server": "^1.12.1",
"webpack-jsdom-tape-plugin": "^1.2.0"
}
}