This repository has been archived by the owner on Feb 1, 2024. It is now read-only.
forked from sricho/react-flexboxgrid
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
65 lines (65 loc) · 1.83 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
{
"name": "react-flexboxgrid",
"version": "0.3.2",
"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"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sricho/react-flexboxgrid.git"
},
"keywords": [
"flexbox",
"grid",
"react",
"react-component",
"cssmodules",
"es6"
],
"author": "Stuart Richardson (stu.richo@gmail.com)",
"license": "MIT",
"bugs": {
"url": "https://github.com/sricho/react-flexboxgrid/issues"
},
"homepage": "https://github.com/sricho/react-flexboxgrid#readme",
"dependencies": {
"classnames": "^2.1.3",
"flexboxgrid": "^6.3.0",
"react": "^0.14.3"
},
"devDependencies": {
"autoprefixer-loader": "^3.1.0",
"babel": "^5.8.23",
"babel-core": "^5.8.24",
"babel-eslint": "^4.1.2",
"babel-loader": "^5.3.2",
"babel-runtime": "^5.8.24",
"css-loader": "^0.18.0",
"eslint": "^1.4.1",
"eslint-plugin-react": "^3.9.0",
"node-sass": "^3.3.2",
"rimraf": "^2.4.3",
"webpack": "^1.12.1"
},
"npmName": "react-flexboxgrid",
"npmFileMap": [
{
"basePath": "/dist/",
"files": [
"*.js"
]
}
]
}