-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.77 KB
/
Copy pathpackage.json
File metadata and controls
64 lines (64 loc) · 1.77 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
58
59
60
61
62
63
64
{
"name": "@quoin/react-test-utils",
"version": "1.0.0",
"description": "Quoin's react test utils",
"main": "dist/index.js",
"scripts": {
"babel": "babel --out-dir dist --ignore \"src/**/*.test.js\" src",
"coveralls": "cat reports/coverage/lcov.info | coveralls",
"precoverage": "rimraf reports/nyc_output reports/coverage",
"coverage": "nyc --report-dir=reports/coverage npm test",
"coverage-report": "nyc report --reporter=text --reporter=text-summary",
"prepack": "npm run babel",
"test": "mocha --require @babel/register \"src/**/*.test.js?(x)\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/Quoin/react-test-utils.git"
},
"keywords": [
"Quoin",
"React",
"test",
"utils"
],
"author": {
"name": "Hữu Ðà Trần",
"email": "huuda.tran@quoininc.com",
"url": "https://www.quoininc.com/staff/huu-da-tran/"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/Quoin/react-test-utils/issues"
},
"homepage": "https://github.com/Quoin/react-test-utils#readme",
"dependencies": {
"chai": "^4.2.0",
"chai-immutable": "^2.1.0",
"dirty-chai": "^2.0.1",
"sinon": "^8.0.2",
"sinon-chai": "^3.4.0"
},
"devDependencies": {
"@babel/cli": "^7.7.7",
"@babel/core": "^7.7.7",
"@babel/preset-env": "^7.7.7",
"@babel/register": "^7.7.7",
"coveralls": "^3.0.9",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.2",
"immutable": "^3.8.2",
"mocha": "^6.2.2",
"nyc": "^15.0.0",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"rimraf": "^3.0.0"
},
"peerDependencies": {
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.2",
"immutable": "^3.8.2",
"react": "^16.12.0",
"react-dom": "^16.12.0"
}
}