-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.23 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.23 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
{
"name": "@convinciblemedia/polyfiller",
"version": "0.1.1",
"description": "Scans JavaScript files and emits list of used features that Polyfill.io can polyfill.",
"type": "module",
"author": "Convincible Media",
"homepage": "https://github.com/ConvincibleMedia/polyfiller#readme",
"bugs": {
"url": "https://github.com/ConvincibleMedia/polyfiller/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ConvincibleMedia/polyfiller.git"
},
"main": "./src/index.js",
"exports": {
".": "./src/index.js"
},
"bin": {
"polyfiller": "bin/polyfiller.js"
},
"files": [
"bin",
"src",
"polyfills",
"readme.md"
],
"engines": {
"node": ">=18.18"
},
"publishConfig": {
"access": "public"
},
"scripts": {
"check": "node ./bin/polyfiller.js --help",
"release:dry-run": "node ./scripts/publish-release.js --dry-run",
"release:publish": "node ./scripts/publish-release.js",
"test": "node ./spec/run-node-tests.js",
"test:coverage": "node ./spec/run-node-tests.js --coverage"
},
"keywords": [
"polyfill",
"polyfillio",
"polyfill.io",
"javascript",
"cli",
"build"
],
"license": "MIT",
"dependencies": {
"@babel/parser": "^7.27.7",
"@babel/traverse": "^7.27.7",
"fast-glob": "^3.3.3"
}
}