-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
73 lines (73 loc) · 2.38 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
{
"name": "super-simple-flex-grid-react",
"version": "1.0.9",
"description": "A react super simple flex grid",
"main": "dist",
"scripts": {
"build": "webpack",
"dev": "webpack-dev-server --progress --watch",
"prepublish": "babel src/FlexGrid --ignore *.test.js --out-dir ./dist",
"lint": "eslint src",
"test": "npm run lint && mocha-webpack",
"test:watch": "mocha-webpack --watch",
"coverage": "cross-env BABEL_ENV=test nyc report --reporter=text-lcov | coveralls"
},
"repository": "git+https://github.com/open-sauces/super-simple-flex-grid-react.git",
"author": "Vincent Bollaert",
"license": "MIT",
"bugs": {
"url": "https://github.com/open-sauces/super-simple-flex-grid-react/issues"
},
"homepage": "https://github.com/open-sauces/super-simple-flex-grid-react#readme",
"devDependencies": {
"babel": "^6.5.2",
"babel-cli": "^6.23.0",
"babel-core": "^6.22.1",
"babel-loader": "^6.2.10",
"babel-plugin-istanbul": "^4.0.0",
"babel-plugin-transform-es2015-modules-umd": "^6.23.0",
"babel-plugin-transform-runtime": "^6.22.0",
"babel-polyfill": "^6.22.0",
"babel-preset-es2015": "^6.22.0",
"babel-preset-react": "^6.22.0",
"babel-preset-stage-0": "^6.22.0",
"chai": "^3.5.0",
"chai-enzyme": "^0.6.1",
"classnames": "^2.2.5",
"coveralls": "^2.11.16",
"cross-env": "^3.1.4",
"css-loader": "^0.26.1",
"enzyme": "^2.7.1",
"eslint": "^3.13.0",
"eslint-config-airbnb": "^14.1.0",
"eslint-config-airbnb-base": "^11.0.0",
"eslint-import-resolver-webpack": "^0.8.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^4.0.0",
"eslint-plugin-react": "^6.10.0",
"highlight-loader": "^0.7.2",
"html-loader": "^0.4.4",
"html-webpack-plugin": "^2.28.0",
"istanbul": "^0.4.5",
"jsdom": "^9.10.0",
"markdown-loader": "0.1.7",
"file-loader": "^0.10.1",
"highlight.js": "^9.9.0",
"mocha": "^3.2.0",
"mocha-lcov-reporter": "^1.2.0",
"mocha-webpack": "^1.0.0-beta.1",
"nyc": "^10.1.2",
"postcss-loader": "^1.2.2",
"react-addons-test-utils": "^15.4.2",
"sass-loader": "^4.1.1",
"style-loader": "^0.13.1",
"webpack": "^2.2.1",
"webpack-dev-server": "^2.3.0",
"webpack-node-externals": "^1.5.4"
},
"dependencies": {
"react": "^15.4.2",
"react-dom": "^15.4.2",
"super-simple-flex-grid": "^1.0.7"
}
}