forked from Nike-Inc/react-virtualized-item-grid
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
111 lines (111 loc) · 3.12 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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
{
"name": "react-virtualized-item-grid",
"version": "1.0.0",
"description": "React component for efficiently rendering a large, scrollable list of items in a series of wrapping rows",
"main": "./dist/react-virtualized-item-grid.js",
"entry": "./src/index.js",
"scripts": {
"test": "NODE_ENV=test ava && flow check",
"build": "rimraf dist && NODE_ENV=production webpack",
"coverage": "NODE_ENV=test nyc npm test",
"build:demo": "NODE_ENV=production webpack --config demo/webpack.config.js && demo/gh-pages-import.py demo"
},
"repository": {
"url": "https://github.com/Nike-Inc/react-virtualized-item-grid",
"type": "git"
},
"homepage": "http://engineering.nike.com/react-virtualized-item-grid/",
"keywords": [
"react",
"virtualized",
"grid"
],
"author": "Nike Showroom Digital Enablement",
"contributors": [{
"name": "Cameron Knight",
"email": "[email protected]"
}],
"maintainers": [{
"name": "Cameron Knight",
"email": "[email protected]"
}],
"license": "MIT",
"dependencies": {
"react": "^15.4.0",
"react-addons-shallow-compare": "^15.4.0",
"react-dom": "^15.4.0",
"react-virtualized": "^8.5.2"
},
"devDependencies": {
"ava": "^0.17.0",
"babel-core": "^6.18.2",
"babel-eslint": "^7.1.1",
"babel-loader": "^6.2.8",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-flow-react-proptypes": "^0.17.2",
"babel-plugin-istanbul": "^3.0.0",
"babel-plugin-transform-class-properties": "^6.19.0",
"babel-plugin-transform-flow-comments": "^6.17.0",
"babel-plugin-transform-object-assign": "^6.8.0",
"babel-plugin-transform-object-rest-spread": "^6.19.0",
"babel-plugin-transform-react-jsx-self": "^6.11.0",
"babel-plugin-transform-react-jsx-source": "^6.9.0",
"babel-plugin-transform-react-remove-prop-types": "^0.2.11",
"babel-preset-es2015": "^6.18.0",
"babel-preset-react": "^6.16.0",
"babel-preset-stage-0": "^6.16.0",
"enzyme": "^2.6.0",
"eslint": "^3.8.1",
"eslint-config-airbnb": "^13.0.0",
"eslint-plugin-babel": "^4.0.0",
"eslint-plugin-flowtype": "^2.19.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^2.2.3",
"eslint-plugin-no-unused-vars-rest": "^1.0.3",
"eslint-plugin-react": "^6.4.1",
"flow-bin": "^0.35.0",
"nyc": "^10.0.0",
"react-addons-test-utils": "^15.4.0",
"rimraf": "^2.5.4",
"rollup": "^0.36.3",
"rollup-plugin-babel": "^2.6.1",
"sinon": "^1.17.6",
"webpack": "2.1.0-beta.22"
},
"ava": {
"concurrency": 5,
"babel": "inherit",
"source": [
"src/**/*.js",
"!src/**/*.spec.js",
"!dist/**/*"
],
"files": [
"src/**/*.spec.js"
],
"require": [
"babel-register"
]
},
"pre-commit": [],
"pre-push": [],
"nyc": {
"sourceMap": false,
"instrument": false,
"reporter": [
"html",
"text-summary"
],
"statements": 100,
"branches": 100,
"functions": 100,
"lines": 100,
"include": [
"src/**/*.js"
],
"exclude": [
"**/*.spec.js",
"node_modules/**/*.js"
]
}
}