-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
85 lines (85 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
84
85
{
"name": "react-flexboxgrid",
"version": "1.0.1",
"description": "React Flexboxgrid components built for use with css modules",
"main": "lib/index.js",
"jsnext:main": "src/index.js",
"scripts": {
"clean": "rimraf lib dist",
"lint": "eslint src",
"build:lib": "babel src --out-dir lib",
"build:umd": "webpack src/index.js dist/react-flexboxgrid.js --config webpack.config.development.js",
"build:umd:min": "webpack src/index.js dist/react-flexboxgrid.min.js --config webpack.config.production.js",
"build": "npm run build:lib && npm run build:umd && npm run build:umd:min",
"preversion": "npm run clean && npm run lint",
"version": "npm run build",
"postversion": "git push && git push --tags && npm run clean",
"prepublish": "npm run clean && npm run build",
"test": "karma start"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sricho/react-flexboxgrid.git"
},
"keywords": [
"flexbox",
"grid",
"react",
"react-component",
"cssmodules",
"es6"
],
"author": "Stuart Richardson ([email protected])",
"license": "MIT",
"bugs": {
"url": "https://github.com/sricho/react-flexboxgrid/issues"
},
"homepage": "https://github.com/sricho/react-flexboxgrid#readme",
"dependencies": {
"classnames": "^2.2.5",
"css-loader": "^0.26.0",
"flexboxgrid": "^6.3.1",
"postcss-js": "^0.1.3",
"postcss-loader": "1.3.3",
"prop-types": "^15.5.9",
"react": "^15.6.1",
"style-loader": "^0.13.1"
},
"devDependencies": {
"babel-cli": "^6.18.0",
"babel-core": "^6.18.2",
"babel-eslint": "^7.1.1",
"babel-loader": "^6.2.8",
"babel-polyfill": "^6.16.0",
"babel-preset-es2015": "^6.18.0",
"babel-preset-react": "^6.16.0",
"babel-preset-stage-0": "^6.16.0",
"babel-runtime": "^6.18.0",
"eslint": "^3.11.1",
"eslint-plugin-react": "^6.7.1",
"expect": "^1.20.2",
"karma": "^1.3.0",
"karma-babel-preprocessor": "^6.0.1",
"karma-cli": "^1.0.1",
"karma-mocha": "^1.3.0",
"karma-mocha-reporter": "^2.2.1",
"karma-phantomjs-launcher": "^1.0.2",
"karma-webpack": "^1.8.0",
"mocha": "^3.2.0",
"node-sass": "^3.13.0",
"phantomjs-polyfill": "0.0.2",
"phantomjs-prebuilt": "^2.1.7",
"react-dom": "^15.6.1",
"rimraf": "^2.5.4",
"webpack": "^1.13.3"
},
"npmName": "react-flexboxgrid",
"npmFileMap": [
{
"basePath": "/dist/",
"files": [
"*.js"
]
}
]
}