-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 2.35 KB
/
package.json
File metadata and controls
82 lines (82 loc) · 2.35 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
71
72
73
74
75
76
77
78
79
80
81
82
{
"name": "glamorous-grid",
"version": "1.0.2",
"description": "Responsive React grid layout components built with glamorous",
"main": "lib/index.js",
"scripts": {
"build": "rimraf lib && babel src -d lib --ignore .spec.js && flow-copy-source -v src lib",
"docs:publish": "cd docs && gatsby build --prefix-paths && gh-pages -d public && cd ..",
"test": "yarn lint && yarn flow && yarn jest",
"lint": "eslint src --ignore-pattern '**/*.test.js' --ext .js",
"flow": "flow check --show-all-errors",
"jest": "jest",
"jest:update": "jest -u"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dylanmoz/glamorous-grid.git"
},
"keywords": [
"react",
"glamorous",
"grid",
"layout",
"responsive",
"mobile"
],
"author": "Dylan Mozlowski <dylan.mozlowski@gmail.com> (http://dylanmoz.github.io)",
"license": "MIT",
"bugs": {
"url": "https://github.com/dylanmoz/glamorous-grid/issues"
},
"homepage": "https://github.com/dylanmoz/glamorous-grid#readme",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-eslint": "^7.2.3",
"babel-jest": "^20.0.3",
"babel-plugin-glamorous-displayname": "^2.1.0",
"babel-plugin-module-resolver": "^2.7.1",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-plugin-transform-react-constant-elements": "^6.23.0",
"babel-plugin-transform-react-inline-elements": "^6.22.0",
"babel-preset-env": "^1.6.0",
"babel-preset-flow": "^6.23.0",
"babel-preset-react": "^6.24.1",
"eslint": "^4.6.0",
"eslint-config-airbnb": "^15.1.0",
"eslint-plugin-flowtype": "^2.35.1",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-jsx-a11y": "^5.1.1",
"eslint-plugin-react": "^7.3.0",
"flow-bin": "^0.54.0",
"flow-copy-source": "^1.2.1",
"glamor": "^2.20.40",
"glamorous": "^4.8.0",
"jest": "^20.0.4",
"react": "^15.6.1",
"react-dom": "^15.6.1",
"rimraf": "^2.6.1"
},
"jest": {
"collectCoverageFrom": [
"src/**/*.js",
"!src/**/*.spec.js"
],
"moduleDirectories": [
"src",
"node_modules"
],
"roots": [
"src/"
]
},
"dependencies": {
"fbjs": "0.8.14"
},
"peerDependencies": {
"glamor": "^2.20.40",
"glamorous": "^4.8.0"
}
}