-
-
Notifications
You must be signed in to change notification settings - Fork 731
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) · 2.77 KB
/
package.json
File metadata and controls
86 lines (86 loc) · 2.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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "tether",
"version": "3.0.2",
"description": "A client-side library to make absolutely positioned elements attach to elements in the page efficiently.",
"repository": {
"type": "git",
"url": "https://github.com/shipshapecode/tether.git"
},
"license": "MIT",
"maintainers": [
"Nicholas Hwang <nick.joosung.hwang@gmail.com>",
"Trevor Burnham <trevorburnham@gmail.com>"
],
"main": "dist/js/tether.js",
"module": "dist/js/tether.esm.js",
"scripts": {
"build": "pnpm clean && rollup -c",
"changelog": "github_changelog_generator -u shipshapecode -p tether --since-tag v1.4.7",
"clean": "rimraf dist",
"cy:open": "./node_modules/.bin/cypress open",
"cy:run": "./node_modules/.bin/cypress run",
"lint:js": "eslint . --ext js",
"prepare": "pnpm build",
"start": "pnpm watch",
"start-test-server": "http-server -p 9002",
"test": "pnpm lint:js && pnpm test:ci",
"test:ci": "pnpm test:unit:ci && pnpm test:cy:ci",
"test:cy:ci": "pnpm build && start-server-and-test start-test-server http://127.0.0.1:9002 cy:run",
"test:cy:watch": "pnpm build && start-server-and-test start-test-server http://127.0.0.1:9002 cy:open",
"test:unit:ci": "jest --coverage",
"test:unit:watch": "jest --watch",
"watch": "pnpm clean && rollup -c --environment DEVELOPMENT --watch"
},
"devDependencies": {
"@babel/core": "^7.28.6",
"@babel/preset-env": "^7.29.0",
"@testing-library/jest-dom": "^5.17.0",
"autoprefixer": "^10.4.24",
"babel-jest": "^29.7.0",
"babel-plugin-rewire": "^1.2.0",
"babel-plugin-transform-es2015-modules-commonjs": "^6.26.2",
"chai": "^6.2.2",
"cssnano": "^7.1.2",
"cypress": "15.9.0",
"eslint": "^8.57.1",
"eslint-plugin-jest": "^29.12.1",
"http-server": "^14.1.1",
"jest": "^29.7.0",
"jest-environment-jsdom": "^30.2.0",
"jest-expect-message": "^1.1.3",
"jsdom": "^28.0.0",
"mutationobserver-shim": "^0.3.7",
"postcss": "^8.5.6",
"release-plan": "^0.17.4",
"rimraf": "^6.1.2",
"rollup": "^2.79.2",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-browsersync": "^1.3.3",
"rollup-plugin-eslint": "^7.0.0",
"rollup-plugin-filesize": "^10.0.0",
"rollup-plugin-license": "^3.6.0",
"rollup-plugin-sass": "^1.15.3",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-visualizer": "^6.0.5",
"sinon": "^21.0.1",
"start-server-and-test": "^2.1.3"
},
"engines": {
"node": ">= 20",
"pnpm": ">= 10"
},
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"pnpm": {
"onlyBuiltDependencies": [
"@parcel/watcher",
"core-js",
"cypress"
]
},
"authors": [
"Zack Bloom <zackbloom@gmail.com>",
"Adam Schwartz <adam.flynn.schwartz@gmail.com>"
]
}