forked from AriTheElk/hedron
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
83 lines (83 loc) · 2.46 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
80
81
82
83
{
"name": "hedron-glamorous",
"version": "0.0.5",
"description": "A no-frills flexbox grid system for React.",
"main": "dist/hedron-glamorous.js",
"author": {
"name": "Filipe Costa",
"email": "[email protected]",
"url": "https://github.com/filipebarcos"
},
"scripts": {
"build": "npm run build:lib && npm run build:dist",
"build:lib": "babel src --out-dir lib",
"build:dist": "rollup -c && rollup -c --environment PRODUCTION",
"clean": "rm -rf dist/*",
"lint": "eslint src",
"lint:fix": "eslint --fix src",
"flow": "flow",
"pretest": "npm run lint && npm run flow",
"test": "jest",
"storybook": "start-storybook -p 6007",
"build-storybook": "build-storybook"
},
"bugs": {
"url": "https://github.com/filipebarcos/hedron-glamorous/issues"
},
"homepage": "",
"repository": {
"type": "git",
"url": "git+https://github.com/filipebarcos/hedron-glamorous.git"
},
"license": "MIT",
"devDependencies": {
"@kadira/storybook": "^2.21.0",
"babel-cli": "^6.18.0",
"babel-core": "^6.18.2",
"babel-eslint": "^7.1.0",
"babel-jest": "^18.0.0",
"babel-loader": "^6.2.7",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-array-includes": "^2.0.3",
"babel-plugin-external-helpers": "^6.18.0",
"babel-plugin-flow-react-proptypes": "^3.2.0",
"babel-preset-es2015": "^6.18.0",
"babel-preset-es2015-rollup": "^3.0.0",
"babel-preset-latest": "^6.16.0",
"babel-preset-react": "^6.16.0",
"babel-preset-stage-2": "^6.18.0",
"eslint": "^3.9.1",
"eslint-config-prettier": "^2.3.0",
"eslint-plugin-flowtype": "^2.35.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-prettier": "^2.1.2",
"eslint-plugin-react": "^7.1.0",
"flow-bin": "^0.37.0",
"glamor": "^3.0.0-3",
"glamorous": "^3.23.5",
"jest": "^18.0.0",
"prettier": "^1.5.2",
"react": "^15.0.0",
"react-dom": "^15.0.0",
"react-test-renderer": "^15.0.0",
"rollup": "^0.36.3",
"rollup-plugin-babel": "^2.6.1",
"rollup-plugin-commonjs": "^5.0.5",
"rollup-plugin-inject": "^2.0.0",
"rollup-plugin-json": "^2.0.2",
"rollup-plugin-node-resolve": "^2.0.0",
"rollup-plugin-replace": "^1.1.1",
"rollup-plugin-uglify": "^1.0.1"
},
"dependencies": {
"prop-types": "^15.5.8"
},
"peerDependencies": {
"glamor": "^3.0.0-3",
"glamorous": "^3.23.5",
"react": "^15.0.0"
},
"jest": {
"testPathDirs": ["src"]
}
}