This repository has been archived by the owner on Nov 18, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 66
/
Copy pathpackage.json
79 lines (79 loc) · 2.32 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
78
79
{
"name": "re-bulma",
"version": "0.5.0",
"description": "",
"main": "lib/index.js",
"module": "lib-es/index.js",
"scripts": {
"start": "BABEL_ENV=cjs node server.js",
"test": "karma start",
"test:watch": "karma start --auto-watch --no-single-run",
"build:style": "node scripts/transform.js default/re-bulma-variables.properties src/styles/ build/ yes",
"build": "npm run build:style && npm run compile && npm run compile-es",
"compile": "BABEL_ENV=cjs babel -d lib/ src/",
"compile-es": "BABEL_ENV=es babel -d lib-es/ src/",
"styleguide-server": "styleguidist server",
"styleguide-build": "node_modules/react-styleguidist/bin/styleguidist build",
"lint": "eslint src",
"precommit": "npm run lint",
"prepublish": "npm run build",
"update-gh-pages": "git push react-bulma `git subtree split --prefix styleguide master`:gh-pages --force"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bokuweb/re-bulma.git"
},
"author": "bokuweb",
"license": "MIT",
"bugs": {
"url": "https://github.com/bokuweb/re-bulma/issues"
},
"homepage": "https://github.com/bokuweb/re-bulma#readme",
"devDependencies": {
"babel": "^6.5.2",
"babel-cli": "^6.9.0",
"babel-core": "^6.9.1",
"babel-eslint": "^7.2.2",
"babel-loader": "^6.2.3",
"babel-plugin-espower": "^2.0.0",
"babel-polyfill": "^6.5.0",
"babel-preset-airbnb": "^2.0.0",
"babel-preset-es2015": "^6.3.13",
"babel-preset-react": "^6.3.13",
"babel-preset-stage-1": "^6.3.13",
"bulma": "0.0.28",
"clean-css": "^3.4.18",
"csjs": "https://github.com/bokuweb/csjs.git",
"eslint": "^3.19.0",
"eslint-config-airbnb": "^9.0.1",
"eslint-plugin-import": "^1.9.2",
"eslint-plugin-jsx-a11y": "^1.5.3",
"eslint-plugin-react": "^5.1.1",
"husky": "^0.13.3",
"lodash.camelcase": "^4.1.1",
"react": "^15.1.0",
"react-dom": "^15.1.0",
"react-hot-loader": "^1.3.0",
"react-styleguidist": "^2.3.1",
"webpack": "^1.12.14",
"webpack-dev-server": "^1.14.1",
"prop-types": "^15.6.1"
},
"keywords": [
"bulma"
],
"peerDependencies": {
"react": ">=0.14.0"
},
"files": [
"lib-es",
"lib",
"build",
"src",
"scripts"
],
"dependencies": {
"insert-css": "^0.2.0",
"properties-parser": "^0.3.1"
}
}