forked from focus-trap/tabbable
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
91 lines (91 loc) · 2.85 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
{
"name": "tabbable",
"version": "5.0.0",
"description": "Returns an array of all tabbable DOM nodes within a containing node.",
"main": "dist/index.min.js",
"module": "dist/index.esm.min.js",
"types": "index.d.ts",
"sideEffects": false,
"files": [
"package.json",
"dist",
"src",
"index.d.ts",
"README.md",
"CHANGELOG.md",
"LICENSE"
],
"scripts": {
"build": "yarn clean && yarn compile",
"clean": "rm -rf ./dist",
"compile-esm": "cross-env BUILD_ENV=esm rollup -c",
"compile-cjs": "cross-env BUILD_ENV=cjs rollup -c",
"compile-umd": "cross-env BUILD_ENV=umd rollup -c",
"compile": "yarn compile-esm && yarn compile-cjs && yarn compile-umd",
"format": "prettier --write \"{*,src/**/*,test/**/*,.github/workflows/*}.+(js|yml)\"",
"format-check": "prettier --check \"{*,src/**/*,test/**/*,.github/workflows/*}.+(js|yml)\"",
"lint": "eslint \"*.js\" \"src/**/*.js\" \"test/**/*.js\"",
"start": "yarn compile-cjs && budo -l -d -o test/debug.js -- -t brfs",
"test-unit": "yarn compile-cjs && karma start",
"test-types": "tsc index.d.ts",
"test": "yarn format-check && yarn lint && yarn test-unit && yarn test-types",
"prepublishOnly": "yarn build",
"release": "yarn build && changeset publish"
},
"repository": {
"type": "git",
"url": "git+https://github.com/davidtheclark/tabbable.git"
},
"author": "David Clark",
"contributors": [
{
"name": "David Clark",
"url": "http://davidtheclark.com/"
},
{
"name": "Stefan Cameron",
"url": "https://stefancameron.com/"
},
{
"name": "Mateusz Burzyński",
"url": "https://github.com/Andarist"
}
],
"license": "MIT",
"bugs": {
"url": "https://github.com/focus-trap/tabbable/issues"
},
"homepage": "https://github.com/focus-trap/tabbable#readme",
"devDependencies": {
"@babel/core": "^7.11.5",
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.10.4",
"@babel/plugin-proposal-optional-chaining": "^7.11.0",
"@babel/preset-env": "^7.11.5",
"@changesets/cli": "^2.10.2",
"@rollup/plugin-babel": "^5.2.0",
"@rollup/plugin-node-resolve": "^9.0.0",
"@types/node": "^14.6.2",
"babel-eslint": "^10.1.0",
"brfs": "^2.0.2",
"browserify": "^16.5.2",
"budo": "^11.6.4",
"chai": "^4.2.0",
"cross-env": "^7.0.2",
"eslint": "^7.8.1",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-import": "^2.22.0",
"karma": "^5.2.0",
"karma-browserify": "^7.0.0",
"karma-chrome-launcher": "^3.1.0",
"karma-firefox-launcher": "^1.3.0",
"karma-mocha": "^2.0.1",
"karma-mocha-reporter": "^2.2.5",
"mocha": "^8.1.3",
"prettier": "^2.1.1",
"rollup": "^2.26.9",
"rollup-plugin-sourcemaps": "^0.6.2",
"rollup-plugin-terser": "^7.0.1",
"typescript": "^4.0.2",
"watchify": "^3.11.1"
}
}