forked from kulakowka/react-bulma
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
73 lines (73 loc) · 2.05 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
{
"name": "reactbulma",
"version": "3.0.4",
"homepage": "https://kulakowka.github.io/react-bulma",
"author": "Anton Kulakov <kulakowka@gmail.com> (http://kulakowka.com)",
"description": "React.js components for Modern CSS framework based on Flexbox",
"contributors": [
{
"name": "Julian Böhnke",
"email": "tr@julianb.de"
}
],
"main": "lib/components",
"repository": {
"type": "git",
"url": "git+https://github.com:kulakowka/react-bulma.git"
},
"keywords": [
"css",
"sass",
"flexbox",
"responsive",
"framework",
"bulma",
"bulma-css",
"react-bulma",
"react",
"components",
"ui",
"ui-kit"
],
"bugs": {
"url": "https://github.com/kulakowka/react-bulma/issues"
},
"dependencies": {
"bulma": "^0.6.0",
"classnames": "^2.2.5",
"prop-types": "^15.6.0",
"react": "^16.0.0",
"react-dom": "^16.0.0"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-env": "^1.6.0",
"babel-preset-react": "^6.24.1",
"eslint-config-standard": "^10.2.1",
"eslint-config-standard-react": "^5.0.0",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-node": "^5.2.0",
"eslint-plugin-promise": "^3.5.0",
"eslint-plugin-react": "^7.4.0",
"eslint-plugin-standard": "^3.0.1",
"gh-pages": "^1.0.0",
"react-scripts": "1.0.14",
"react-styleguidist": "^6.0.27"
},
"scripts": {
"test": "react-scripts test --env=jsdom",
"styleguide": "styleguidist server",
"styleguide:build": "styleguidist build",
"predeploy": "npm run styleguide:build",
"deploy": "gh-pages -d styleguide",
"build": "babel src -d lib",
"lint": "eslint src/components/**; exit 0",
"lint:watch": "esw -w src/**",
"prepublish": "npm run build",
"publish": "git push origin && git push origin --tags",
"release:patch": "npm version patch && npm publish",
"release:minor": "npm version minor && npm publish",
"release:major": "npm version major && npm publish"
}
}