forked from dragma/styled-bootstrap-grid
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 1.85 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
{
"name": "styled-bootstrap-grid",
"version": "3.0.4",
"description": "bootstrap grid system using styled components",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist/"
],
"scripts": {
"type-check": "tsc --noEmit",
"type-check:watch": "npm run type-check -- --watch",
"build": "rm -rf dist/ && npm run build:types && npm run build:js",
"build:types": "tsc --emitDeclarationOnly",
"build:js": "babel src --out-dir dist --extensions \".ts,.tsx\"",
"prepublishOnly": "npm run build",
"format": "prettier --write 'src/**/*.{ts,tsx,js,jsx,json}'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dragma/styled-bootstrap-grid.git"
},
"keywords": [
"styled-components",
"bootstrap",
"react-bootstrap",
"layout",
"grid",
"grid system",
"styled grid",
"styled layout",
"styled bootstrap grid"
],
"author": "Florent Béjina",
"license": "MIT",
"bugs": {
"url": "https://github.com/dragma/styled-bootstrap-grid/issues"
},
"homepage": "https://github.com/dragma/styled-bootstrap-grid#readme",
"peerDependencies": {
"react": "^0.14.0 || ^16.0.0-0",
"styled-components": ">=4"
},
"devDependencies": {
"@babel/cli": "^7.1.5",
"@babel/core": "^7.1.6",
"@babel/plugin-proposal-class-properties": "^7.1.0",
"@babel/plugin-proposal-object-rest-spread": "^7.0.0",
"@babel/preset-env": "^7.1.6",
"@babel/preset-react": "^7.0.0",
"@babel/preset-typescript": "^7.1.0",
"@types/react": "^16.7.11",
"@types/react-dom": "^16.0.11",
"@types/styled-components": "^4.1.2",
"eslint": "^5.9.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jsx-a11y": "^6.1.2",
"eslint-plugin-react": "^7.11.1",
"typescript": "^3.2.1",
"prettier": "^1.15.3"
}
}