-
Notifications
You must be signed in to change notification settings - Fork 112
/
package.json
99 lines (99 loc) · 3.64 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
89
90
91
92
93
94
95
96
97
98
99
{
"name": "focus-trap",
"version": "7.6.0",
"description": "Trap focus within a DOM node.",
"main": "dist/focus-trap.js",
"module": "dist/focus-trap.esm.js",
"types": "index.d.ts",
"sideEffects": false,
"files": [
"package.json",
"README.md",
"CHANGELOG.md",
"SECURITY.md",
"LICENSE",
"index.js",
"index.d.ts",
"dist"
],
"scripts": {
"demo-bundle": "npm run compile:demo",
"format": "prettier --write \"{*,src/**/*,test/**/*,docs/js/**/*,.github/workflows/*,cypress/**/*}.+(js|yml)\"",
"format:check": "prettier --check \"{*,src/**/*,test/**/*,docs/js/**/*,.github/workflows/*,cypress/**/*}.+(js|yml)\"",
"format:watch": "onchange \"{*,src/**/*,test/**/*,docs/js/**/*,.github/workflows/*,cypress/**/*}.+(js|yml)\" -- prettier --write {{changed}}",
"lint": "eslint \"*.js\" \"docs/js/**/*.js\" \"cypress/**/*.js\"",
"clean": "rm -rf ./dist",
"compile:esm": "cross-env BUILD_ENV=esm BABEL_ENV=esm rollup -c",
"compile:cjs": "cross-env BUILD_ENV=cjs BABEL_ENV=es5 rollup -c",
"compile:umd": "cross-env BUILD_ENV=umd BABEL_ENV=es5 rollup -c",
"compile:demo": "cross-env BUILD_ENV=demo BABEL_ENV=es5 rollup -c",
"compile": "npm run compile:esm && npm run compile:cjs && npm run compile:umd",
"build": "npm run clean && npm run compile",
"start": "npm run compile:demo -- --watch --environment SERVE,RELOAD",
"start:cypress": "npm run compile:demo -- --environment SERVE,IS_CYPRESS_ENV:\"$CYPRESS_BROWSER\"",
"test:types": "tsc index.d.ts",
"test:unit": "echo \"No unit tests to run!\"",
"test:e2e": "ELECTRON_ENABLE_LOGGING=1 start-server-and-test start:cypress 9966 'cypress run --browser $CYPRESS_BROWSER --headless'",
"test:e2e:chrome": "CYPRESS_BROWSER=chrome npm run test:e2e",
"test:e2e:dev": "ELECTRON_ENABLE_LOGGING=1 start-server-and-test start:cypress 9966 'cypress open'",
"test": "npm run format:check && npm run lint && npm run test:unit && npm run test:types && npm run test:e2e:chrome",
"prepare": "npm run build",
"prepublishOnly": "npm run test && npm run build",
"release": "npm run build && changeset publish",
"all-contributors": "all-contributors"
},
"repository": {
"type": "git",
"url": "git+https://github.com/focus-trap/focus-trap.git"
},
"keywords": [
"focus",
"accessibility",
"trap",
"capture",
"keyboard",
"modal"
],
"author": {
"name": "David Clark",
"url": "http://davidtheclark.com/"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/focus-trap/focus-trap/issues"
},
"homepage": "https://github.com/focus-trap/focus-trap#readme",
"dependencies": {
"tabbable": "^6.2.0"
},
"devDependencies": {
"@babel/cli": "^7.25.9",
"@babel/core": "^7.26.0",
"@babel/eslint-parser": "^7.25.9",
"@babel/preset-env": "^7.26.0",
"@changesets/cli": "^2.27.9",
"@rollup/plugin-babel": "^6.0.4",
"@rollup/plugin-commonjs": "^28.0.1",
"@rollup/plugin-node-resolve": "^15.3.0",
"@rollup/plugin-replace": "^6.0.1",
"@rollup/plugin-terser": "^0.4.4",
"@testing-library/cypress": "^10.0.2",
"@types/jquery": "^3.5.32",
"all-contributors-cli": "^6.26.1",
"babel-loader": "^9.2.1",
"cross-env": "^7.0.3",
"cypress": "^13.15.1",
"cypress-plugin-tab": "^1.0.5",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-cypress": "^3.6.0",
"eslint-plugin-jest": "^28.8.3",
"onchange": "^7.1.0",
"prettier": "^3.3.3",
"rollup": "^4.24.3",
"rollup-plugin-livereload": "^2.0.5",
"rollup-plugin-serve": "^3.0.0",
"start-server-and-test": "^2.0.8",
"typescript": "^5.6.3"
}
}