-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
74 lines (74 loc) · 1.8 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
{
"name": "render-shallow",
"version": "2.0.0",
"description": "A utility for shallow rendering in React",
"main": "render-shallow.js",
"scripts": {
"ci": "npm run lint && npm run test:ci",
"compile": "babel index.js --out-file render-shallow.js",
"test": "jest",
"test:ci": "npm run test:coverage",
"test:watch": "npm t -- --watch",
"test:coverage": "npm t -- --coverage",
"lint": "eslint index.js render-shallow.spec.js",
"start": "npm run test:watch",
"prepublishOnly": "npm run compile"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/ianmcnally/render-shallow.git"
},
"keywords": [
"shallow",
"render",
"react",
"test",
"testutil"
],
"author": "Ian McNally <ianmcnally@gmail.com>",
"license": "ISC",
"bugs": {
"url": "https://github.com/ianmcnally/render-shallow/issues"
},
"homepage": "https://github.com/ianmcnally/render-shallow#readme",
"jest": {
"coverageThreshold": {
"global": {
"branches": 100,
"functions": 100,
"lines": 100,
"statements": 100
}
}
},
"devDependencies": {
"@babel/cli": "^7.4.4",
"@babel/core": "^7.4.4",
"babel-jest": "^24.7.1",
"babel-polyfill": "^6.26.0",
"babel-register": "^6.26.0",
"eslint": "^5.16.0",
"eslint-plugin-react": "^7.12.4",
"jest": "^24.7.1",
"prop-types": "^15.7.2",
"sinon": "^7.3.2"
},
"dependencies": {
"@babel/preset-env": "^7.4.4",
"@babel/preset-react": "^7.0.0",
"react": "^16.8.6",
"react-test-renderer": "^16.8.6"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}