-
Notifications
You must be signed in to change notification settings - Fork 67
Expand file tree
/
Copy pathpackage.json
More file actions
122 lines (122 loc) · 3.53 KB
/
package.json
File metadata and controls
122 lines (122 loc) · 3.53 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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
{
"name": "dom-helpers",
"version": "6.0.1",
"description": "tiny modular DOM lib for ie9+",
"author": {
"name": "Jason Quense",
"email": "monastic.panic@gmail.com"
},
"repository": {
"type": "git",
"url": "git+https://github.com/react-bootstrap/dom-helpers.git"
},
"license": "MIT",
"files": [
"cjs",
"esm"
],
"main": "cjs/index.js",
"types": "esm/index.d.ts",
"module": "esm/index.js",
"exports": {
"./package.json": "./package.json",
".": {
"require": {
"types": "./cjs/index.d.ts",
"default": "./cjs/index.js"
},
"import": {
"types": "./esm/index.d.ts",
"default": "./esm/index.js"
}
},
"./*": {
"require": {
"types": "./cjs/*.d.ts",
"default": "./cjs/*.js"
},
"import": {
"types": "./esm/*.d.ts",
"default": "./esm/*.js"
}
}
},
"keywords": [
"dom-helpers",
"react-component",
"dom",
"api",
"cross-browser",
"style",
"event",
"height",
"width",
"dom-helpers",
"class",
"classlist",
"css"
],
"scripts": {
"test": "karma start --single-run",
"tdd": "karma start",
"build": "yarn build:cjs && yarn build:esm && node fix-dts.mjs",
"build:cjs": "rimraf cjs && babel src --out-dir cjs --delete-dir-on-start --env-name cjs --extensions .ts && yarn build:cjs:types && echo '{\"type\": \"commonjs\"}' > cjs/package.json",
"build:esm": "rimraf esm && babel src --out-dir esm --delete-dir-on-start --env-name esm --extensions .ts && yarn build:esm:types && echo '{\"type\": \"module\"}' > esm/package.json",
"build:cjs:types": "tsc --emitDeclarationOnly --module commonjs --outDir cjs",
"build:esm:types": "tsc --emitDeclarationOnly --module esnext --outDir esm",
"prepublishOnly": "yarn build",
"lint": "tsc -p ./ --noEmit && eslint src test",
"release": "rollout"
},
"release": {
"conventionalCommits": true
},
"dependencies": {
"@babel/runtime": "^7.27.1",
"csstype": "^3.1.3"
},
"devDependencies": {
"@4c/rollout": "^4.0.2",
"@4c/tsconfig": "^0.4.1",
"@babel/cli": "^7.27.2",
"@babel/core": "^7.27.1",
"@babel/preset-typescript": "^7.27.1",
"@react-bootstrap/babel-preset": "^2.3.0",
"@react-bootstrap/eslint-config": "^1.3.2",
"@react-bootstrap/eslint-config-typescript": "^2.0.1",
"@typescript-eslint/eslint-plugin": "^4.22.1",
"@typescript-eslint/parser": "^4.22.1",
"babel-eslint": "^10.1.0",
"babel-loader": "^10.0.0",
"eslint": "^7.25.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-mocha": "^8.1.0",
"eslint-plugin-react": "^7.23.2",
"expect.js": "^0.3.1",
"glob": "^11.0.3",
"jquery": "^3.7.1",
"karma": "^6.4.4",
"karma-chrome-launcher": "^3.2.0",
"karma-firefox-launcher": "^2.1.3",
"karma-html2js-preprocessor": "^1.1.0",
"karma-mocha": "~2.0.1",
"karma-mocha-reporter": "^2.2.5",
"karma-sinon": "^1.0.5",
"karma-sourcemap-loader": "^0.4.0",
"karma-webpack": "^5.0.1",
"mocha": "^11.5.0",
"rimraf": "^6.0.1",
"simulant": "^0.2.2",
"sinon": "^20.0.0",
"typescript": "^5.8.3",
"webpack": "^5.99.9"
},
"bugs": {
"url": "https://github.com/react-bootstrap/dom-helpers/issues"
},
"readme": "ERROR: No README data found!",
"homepage": "https://github.com/react-bootstrap/dom-helpers#readme",
"_id": "dom-helpers@5.2.0",
"packageManager": "yarn@1.22.19+sha1.4ba7fc5c6e704fce2066ecbfb0b0d8976fe62447"
}