This repository has been archived by the owner on May 29, 2019. It is now read-only.
forked from mpaupulaire4/bulma-styled-components
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
77 lines (77 loc) · 2.12 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
68
69
70
71
72
73
74
75
76
77
{
"name": "bulma-styled-components",
"version": "1.0.2",
"description": "A Styled Components implementation of Bulma Css for React.",
"main": "dist/index.js",
"scripts": {
"build": "rollup -c",
"lint:style": "stylelint './src/**/*.js'",
"lint:js": "eslint 'src'",
"lint": "npm run lint:js && npm run lint:style",
"docs": "catalog start",
"predeploy": "npm run build:docs",
"deploy": "gh-pages -d catalog/build",
"build:docs": "catalog build -u './'",
"prepublish": "npm run build",
"test": "npm run lint"
},
"repository": {
"type": "git",
"url": "https://github.com/mpaupulaire4/bulma-styled-components.git"
},
"files": [
"dist"
],
"keywords": [
"bulma",
"styled-components",
"styled",
"components",
"react",
"style"
],
"author": {
"name": "Michel Paupulaire",
"url": "https://github.com/mpaupulaire4"
},
"license": "MIT",
"dependencies": {
"polished": "^1.9.2"
},
"peerDependencies": {
"react": "^16.0.0",
"styled-components": "^3.0.0"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-eslint": "^8.2.3",
"babel-loader": "^7.1.5",
"babel-plugin-external-helpers": "^6.22.0",
"babel-plugin-styled-components": "^1.5.1",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.7.0",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"catalog": "3.5.5",
"eslint": "^4.19.1",
"eslint-config-airbnb": "^16.1.0",
"eslint-plugin-import": "^2.12.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-react": "^7.9.1",
"file-loader": "^1.1.11",
"gh-pages": "^1.2.0",
"react": "^16.4.1",
"react-dom": "^16.4.0",
"rollup": "^0.62.0",
"rollup-plugin-babel": "^3.0.5",
"rollup-plugin-node-resolve": "^3.3.0",
"rollup-plugin-sourcemaps": "^0.4.2",
"styled-components": "^3.3.3",
"stylelint": "^9.2.1",
"stylelint-config-recommended": "^2.1.0",
"stylelint-config-styled-components": "^0.1.1",
"stylelint-processor-styled-components": "^1.3.1",
"webpack": "^4.15.1"
}
}