-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.35 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.35 KB
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
{
"name": "react-resized",
"version": "0.0.3",
"description": "Return values based on browser width",
"main": "dist/index.js",
"directories": {
"test": "tests"
},
"scripts": {
"build": "babel src --out-dir dist",
"test": "jest",
"test-ci": "jest --coverage --no-cache && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js"
},
"jest": {
"testMatch": [
"<rootDir>/tests/**/*.js"
],
"transform": {
".*": "<rootDir>/node_modules/babel-jest"
},
"moduleFileExtensions": [
"js"
],
"collectCoverageFrom": [
"src/index.js"
],
"collectCoverage": false
},
"repository": {
"type": "git",
"url": "git+https://github.com/navjobs/resized.git"
},
"keywords": [
"react",
"media",
"query"
],
"author": "Zach Silveira",
"license": "ISC",
"bugs": {
"url": "https://github.com/navjobs/resized/issues"
},
"homepage": "https://github.com/navjobs/resized#readme",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-jest": "^20.0.3",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"coveralls": "^2.13.1",
"enzyme": "^2.9.1",
"jest": "^20.0.4",
"react": "^15.6.1",
"react-dom": "^15.6.1",
"react-test-renderer": "^15.6.1"
}
}