-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
86 lines (86 loc) · 2.06 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
{
"name": "@helpscout/cyan",
"version": "0.12.1",
"description": "Cypress-like Testing for React + JSDOM",
"main": "dist/index.js",
"private": false,
"types": "dist/index.d.ts",
"scripts": {
"prestart": "zero prestart",
"build": "zero build --ts && zero build --no-clean",
"postbuild": "sh ./scripts/postbuild.sh",
"lint": "zero lint",
"dev": "zero test",
"test": "zero test --coverage",
"coverage": "nyc report --temp-directory=coverage --reporter=text-lcov | coveralls",
"format": "zero format",
"validate": "zero validate",
"start": "cd website; npm run start",
"release": "zero release",
"version": "npm run build",
"precommit": "zero pre-commit",
"brain": "node ./brain",
"brain:kill": "kill $(sudo lsof -t -i:3000)"
},
"files": [
"docs",
"dist",
"README.md",
"LICENSE"
],
"author": "Jon Quach <[email protected]> (https://jonquach.com)",
"keywords": [
"cypress",
"cy",
"cyan",
"JSDOM",
"react",
"dom",
"testing",
"render",
"unit",
"integration"
],
"repository": {
"type": "git",
"url": "git+https://github.com/helpscout/cyan.git"
},
"bugs": {
"url": "https://github.com/helpscout/cyan/issues"
},
"license": "MIT",
"publishConfig": {
"access": "public"
},
"peerDependencies": {
"react": "^16 || ^15",
"react-dom": "^16 || ^15"
},
"dependencies": {
"@types/react": "16.8.15",
"deepmerge": "3.2.0",
"delay": "4.2.0",
"dom-testing-library": "^3.19.4",
"invariant": "2.2.4",
"keycode": "^2.2.0",
"pretty": "^2.0.0",
"react-redux": "^5.1.1",
"react-router": "^4.3.1",
"redux": "^4.0.1",
"redux-thunk": "^2.3.0",
"rimraf": "2.6.3"
},
"devDependencies": {
"@helpscout/hsds-react": "2.39.1",
"@helpscout/zero": "3.2.1",
"@types/jest": "24.0.12",
"cheerio": "^1.0.0-rc.3",
"coveralls": "3.0.3",
"express": "4.17.1",
"nyc": "13.3.0",
"react": "16.8.6",
"react-dom": "16.8.6",
"react-router-dom": "4.3.1",
"socket.io": "^2.2.0"
}
}