-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
93 lines (93 loc) · 2.36 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
86
87
88
89
90
91
92
93
{
"name": "react-cellblock",
"version": "3.0.4",
"description": "A react-based grid for smarter responsive components",
"repository": {
"type": "git",
"url": "https://github.com/dowjones/react-cellblock.git"
},
"keywords": [
"react-component",
"react",
"grid",
"responsive"
],
"author": "[email protected]",
"license": "MIT",
"main": "lib/index.js",
"nyc": {
"lines": 100,
"statements": 100,
"functions": 100,
"branches": 90,
"include": [
"src/**/*.js"
],
"exclude": [
"src/**/*.spec.js"
],
"reporter": [
"lcov",
"text-summary"
],
"require": [
"./test/_helpers/boot.js"
],
"check-coverage": true,
"report-dir": "./coverage"
},
"scripts": {
"lint": "eslint src test",
"prepublish": "babel src --out-dir lib",
"test": "npm run lint && nyc mocha",
"test:watch": "mocha -G -w -R min -t 600 -r test/_helpers/boot $(find test ./test -type f -name '*-test.js')",
"start": "webpack-dev-server --hot --inline",
"build": "webpack -d"
},
"dependencies": {
"babel-runtime": "^6.23.0",
"cellblock": "^1.1.2",
"classnames": "^2.2.5",
"eventlistener": "0.0.1",
"prop-types": "^15.5.10"
},
"devDependencies": {
"babel-cli": "^6.24.0",
"babel-core": "^6.24.0",
"babel-eslint": "^7.2.1",
"babel-loader": "^6.4.1",
"babel-plugin-transform-decorators": "^6.22.0",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-preset-es2015": "^6.24.0",
"babel-preset-es2015-loose": "^8.0.0",
"babel-preset-react": "^6.23.0",
"css-loader": "^0.28.0",
"eslint": "^3.19.0",
"eslint-plugin-react": "^6.10.3",
"extract-text-webpack-plugin": "^2.1.0",
"istanbul": "^0.4.5",
"jsdom": "^9.12.0",
"mocha": "^3.2.0",
"node-sass": "^4.5.2",
"nyc": "^10.2.0",
"proxyquire": "^1.7.11",
"react": "^15.6.1",
"react-addons-pure-render-mixin": "^15.4.2",
"react-addons-test-utils": "^15.4.2",
"react-dom": "^15.6.1",
"react-hot-loader": "^1.2.8",
"require-directory": "^2.1.1",
"sass-loader": "^6.0.3",
"should": "^11.2.1",
"sinon": "^2.1.0",
"style-loader": "^0.16.1",
"webpack": "^2.3.3",
"webpack-dev-server": "^2.4.2"
},
"peerDependencies": {
"react": "^0.14.0 || ^15.0.0-0 || ^16.0.0-0"
},
"files": [
"lib"
]
}