-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
71 lines (71 loc) · 2.13 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
{
"name": "babel-plugin-polyfill-custom",
"version": "1.0.147",
"description": "Yet another babel plugin that lets you freely customize polyfills.",
"keywords": [
"babel",
"babel-plugin",
"polyfill"
],
"repository": {
"type": "git",
"url": "https://github.com/3846masa/babel-plugin-polyfill-custom.git"
},
"funding": "https://github.com/sponsors/3846masa",
"license": "MIT",
"author": "3846masa <[email protected]>",
"main": "lib/index.js",
"files": [
"lib",
"!**/__tests__"
],
"scripts": {
"build": "tsc --project tsconfig.build.json",
"format": "pnpm run --sequential \"/^format:.*/\"",
"format:eslint": "eslint --max-warnings 0 --fix .",
"format:prettier": "prettier --write .",
"lint": "pnpm run \"/^lint:.*/\"",
"lint:eslint": "eslint --max-warnings 0 .",
"lint:prettier": "prettier --check .",
"lint:tsc": "tsc --noEmit",
"semantic-release": "semantic-release",
"test": "jest"
},
"dependencies": {
"@babel/helper-define-polyfill-provider": "0.6.3",
"@mdn/browser-compat-data": "5.6.31",
"fast-json-stable-stringify": "2.1.0",
"lodash.get": "4.4.2",
"semver": "7.6.3"
},
"devDependencies": {
"@3846masa/configs": "github:3846masa/configs#d20d5d0c8d45814e15d50fca047b48e712b41d38",
"@babel/core": "7.26.0",
"@jest/globals": "29.7.0",
"@semantic-release/changelog": "6.0.3",
"@semantic-release/commit-analyzer": "11.1.0",
"@semantic-release/git": "10.0.1",
"@semantic-release/github": "9.2.6",
"@semantic-release/npm": "11.0.3",
"@semantic-release/release-notes-generator": "12.1.0",
"@types/babel__core": "7.20.5",
"@types/eslint": "9.6.1",
"@types/lodash.get": "4.4.9",
"@types/node": "18.19.74",
"@types/semver": "7.5.8",
"dedent": "1.5.3",
"jest": "29.7.0",
"semantic-release": "22.0.12",
"ts-jest": "29.2.5",
"typescript": "5.7.3"
},
"peerDependencies": {
"@babel/core": ">=7.0.0"
},
"packageManager": "[email protected]",
"pnpm": {
"patchedDependencies": {
"@semantic-release/[email protected]": "patches/@[email protected]"
}
}
}