-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
58 lines (58 loc) · 1.59 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
{
"name": "radium-bootstrap-grid",
"version": "0.1.9",
"description": "Bootstrap grid system using inline styles",
"main": "lib/index.js",
"jsnext:main": "src/index.js",
"author": "Jiri Orsag",
"license": "MIT",
"homepage": "https://github.com/blueberryapps/radium-bootstrap-grid#readme",
"repository": {
"type": "git",
"url": "git@github.com:blueberryapps/radium-bootstrap-grid"
},
"bugs": {
"url": "https://github.com/blueberryapps/radium-bootstrap-grid/issues"
},
"scripts": {
"build": "npm run build:lib",
"build:lib": "babel src --out-dir lib",
"check": "npm run lint && npm run test",
"clean": "rimraf lib",
"postversion": "git push && git push --tags && npm run clean",
"prepublish": "npm run clean && npm run build",
"preversion": "npm run clean && npm run check",
"version": "npm run build"
},
"keywords": [
"inline",
"styles",
"radium",
"grid",
"bootstrap",
"component",
"react",
"react-component",
"es6"
],
"devDependencies": {
"babel": "^6.23.0",
"babel-cli": "^6.23.0",
"babel-core": "^6.23.1",
"babel-eslint": "^7.1.1",
"babel-plugin-transform-class-properties": "^6.23.0",
"babel-preset-es2015": "^6.22.0",
"babel-preset-react": "^6.23.0",
"babel-preset-stage-0": "^6.22.0",
"eslint": ">=1.7.1",
"eslint-config-airbnb": ">=0.1.0",
"eslint-plugin-react": ">=3.5.1",
"react-transform-catch-errors": ">=1.0.0",
"react-transform-hmr": ">=1.0.1",
"rimraf": ">=2.4.3"
},
"peerDependencies": {
"radium": ">=0.15.3",
"react": ">=0.14.3"
}
}