-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
67 lines (67 loc) · 1.86 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
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"name": "react-gridit",
"version": "0.3.1",
"description": "React grid using CSS Grid and styled-components",
"main": "dist/index.js",
"module": "es/index.js",
"jsnext:main": "es/index.js",
"scripts": {
"build:cjs": "BABEL_ENV=cjs babel src --out-dir dist",
"build:es": "BABEL_ENV=es babel src --out-dir es",
"build": "npm run build:es && npm run build:cjs",
"clean": "trash dist es",
"examples": "cd examples && npm i && npm start",
"flow": "flow",
"format": "prettier-eslint \"{src}/**/*.{js,jsx}\" --write",
"lint": "eslint . --ignore-path .gitignore",
"prebuild": "npm run clean",
"prepare": "npm run build"
},
"author": "Nemanja Stojanovic <[email protected]>",
"homepage": "https://github.com/nem035/react-gridit.git",
"repository": {
"type": "git",
"url": "https://github.com/nem035/react-gridit.git"
},
"bugs": {
"url": "https://github.com/nem035/react-gridit/issues"
},
"pre-commit": ["format", "flow"],
"keywords": [
"react",
"react-component",
"composition",
"simple",
"grid",
"layout",
"css",
"column",
"row"
],
"files": ["es", "dist"],
"license": "MIT",
"dependencies": {
"pre-commit": "^1.2.2",
"react": "^16.2.0",
"react-media": "^1.6.1",
"styled-components": "^2.4.0"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-eslint": "^7.2.3",
"babel-preset-es2015": "^6.24.1",
"babel-preset-flow": "^6.23.0",
"babel-preset-react": "^6.24.1",
"eslint": "^3.19.0",
"eslint-config-airbnb": "^15.0.1",
"eslint-config-prettier": "^2.9.0",
"eslint-plugin-import": "^2.6.1",
"eslint-plugin-jsx-a11y": "^5.1.1",
"eslint-plugin-prettier": "^2.4.0",
"eslint-plugin-react": "^7.1.0",
"flow-bin": "^0.62.0",
"prettier": "^1.9.2",
"prettier-eslint-cli": "^4.7.0",
"trash-cli": "^1.4.0"
}
}