-
Notifications
You must be signed in to change notification settings - Fork 69
/
package.json
88 lines (88 loc) · 2.45 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
{
"name": "react-tether",
"version": "3.0.3",
"description": "A positioning engine to make overlays, tooltips and dropdowns better",
"type": "module",
"source": "src/react-tether.tsx",
"exports": {
"require": "./lib/react-tether.cjs",
"default": "./lib/react-tether.modern.js"
},
"main": "./lib/react-tether.cjs",
"module": "./lib/react-tether.esm.js",
"unpkg": "./lib/react-tether.umd.js",
"types": "./lib/react-tether.d.ts",
"scripts": {
"build": "microbundle --jsx React.createElement --jsxFragment React.Fragment",
"demo": "parcel example/index.html",
"demo:deploy": "./bin/build-demo",
"unit": "jest tests/unit",
"e2e": "testcafe chrome tests/e2e --app \"npm run demo\"",
"e2e:full": "testcafe \"saucelabs:Chrome@latest\",\"saucelabs:Firefox@latest\",\"saucelabs:MicrosoftEdge@latest\",\"saucelabs:Safari@latest\" tests/e2e --app 'npm run demo'",
"test": "npm run typescript && npm run unit",
"tdd": "npm run unit -- --watch",
"typescript": "tsc",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "https://github.com/danreeves/react-tether"
},
"keywords": [
"react",
"react-tether",
"tether",
"component",
"drop"
],
"author": "Dan Reeves <hey@danreev.es>, Travis Arnold <travis@souporserious.com> (http://souporserious.com)",
"license": "MIT",
"bugs": {
"url": "https://github.com/danreeves/react-tether/issues"
},
"homepage": "https://github.com/danreeves/react-tether",
"dependencies": {
"tether": "^1.4.7",
"@types/tether": "^1.4.6"
},
"peerDependencies": {
"react": "*",
"react-dom": "*"
},
"devDependencies": {
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^13.4.0",
"@types/react": "^18.0.19",
"@types/react-dom": "^18.0.6",
"@types/styled-components": "^5.1.26",
"@types/testing-library__jest-dom": "^5.14.5",
"git-directory-deploy": "1.5.1",
"husky": "^8.0.0",
"jest": "^29.0.3",
"jest-environment-jsdom": "^29.0.3",
"microbundle": "^0.15.1",
"parcel-bundler": "^1.10.3",
"prettier": "^2.7.1",
"pretty-quick": "^3.1.3",
"react": "^18",
"react-dom": "^18",
"react-draggable": "4.4.5",
"strip-indent": "4.0.0",
"styled-components": "^5.3.5",
"testcafe": "2.0.0",
"testcafe-browser-provider-saucelabs": "1.9.0",
"ts-jest": "^29.0.1",
"typescript": "^5.2"
},
"files": [
"dist",
"lib"
],
"jest": {
"preset": "ts-jest",
"testEnvironment": "jsdom",
"setupFilesAfterEnv": [
"@testing-library/jest-dom/extend-expect"
]
}
}