-
Notifications
You must be signed in to change notification settings - Fork 27
/
package.json
62 lines (62 loc) · 1.7 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
{
"description": "The bootstrap components made with styled-components",
"scripts": {
"precommit": "lint-staged",
"test": "jest --coverage --collectCoverageFrom=packages/**/src/**/*.js"
},
"license": "MIT",
"author": "Lukas Aichbauer <[email protected]>",
"keywords": [
"components",
"react",
"react-component",
"ui",
"styled-components",
"bootstrap",
"presentational",
"stateless",
"functional"
],
"repository": {
"type": "git",
"url": "git+https://github.com/aichbauer/styled-bootstrap-components.git"
},
"bugs": {
"url": "https://github.com/aichbauer/styled-bootstrap-components/issues"
},
"homepage": "https://github.com/aichbauer/styled-bootstrap-components",
"lint-staged": {
"./packages/**/*.js": [
"eslint --fix",
"git add"
]
},
"devDependencies": {
"@babel/cli": "^7.0.0",
"@babel/core": "^7.2.2",
"@babel/plugin-syntax-object-rest-spread": "^7.0.0",
"@babel/preset-env": "^7.0.0",
"@babel/preset-react": "^7.0.0",
"babel-cli": "^6.26.0",
"babel-core": "^7.0.0-bridge.0",
"babel-jest": "^23.6.0",
"babel-preset-env": "^1.6.1",
"babel-preset-react": "^6.24.1",
"babel-runtime": "^6.26.0",
"eslint": "^4.18.2",
"eslint-config-airbnb": "^16.1.0",
"eslint-plugin-import": "^2.9.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-react": "^7.7.0",
"husky": "^0.14.3",
"jest": "^23.6.0",
"jest-styled-components": "^6.3.1",
"lerna": "^2.8.0",
"lint-staged": "^8.1.4",
"react": "^16.7.0",
"react-dom": "^16.7.0",
"react-test-renderer": "^16.7.0",
"regenerator-runtime": "^0.13.1",
"styled-components": "^4.1.3"
}
}