-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
64 lines (64 loc) · 1.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
{
"name": "polyfillist",
"description": "Get list of required https://cdnjs.cloudflare.com/polyfill/ features based on browserslist.",
"repository": {
"type": "git",
"url": "git+https://github.com/adenvt/polyfillist.git"
},
"packageManager": "[email protected]",
"version": "0.1.2",
"type": "module",
"bin": "./dist/cli.mjs",
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"author": {
"name": "Ade Novid",
"email": "[email protected]",
"url": "https://adenov.id"
},
"files": [
"dist/"
],
"scripts": {
"build": "unbuild",
"prepack": "yarn build",
"test": "vitest",
"lint": "eslint . --ext .js,.vue,.ts --format pretty",
"fix": "yarn lint --fix",
"coverage": "vitest run --coverage"
},
"license": "MIT",
"dependencies": {
"@mrhenry/polyfill-library": "^5.1.0",
"browserslist": "^4.23.3",
"meow": "^11.0.0",
"semver": "^7.6.3",
"ufo": "^1.5.4"
},
"devDependencies": {
"@privyid/browserslist-config": "^0.27.0",
"@privyid/eslint-config-persona": "^1.0.0-rc.6",
"@tsconfig/node20": "^20.1.4",
"@types/jest": "^29.4.0",
"@types/semver": "^7.3.13",
"@typescript-eslint/eslint-plugin": "5.62.0",
"@typescript-eslint/parser": "5.62.0",
"@vitest/coverage-c8": "^0.30.0",
"@vue/eslint-config-typescript": "13.0.0",
"eslint": "8.57.0",
"eslint-config-standard-with-typescript": "21.0.1",
"eslint-formatter-pretty": "5.0.0",
"eslint-plugin-align-assignments": "1.1.2",
"eslint-plugin-import": "2.29.1",
"eslint-plugin-n": "16.6.2",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-promise": "6.1.1",
"eslint-plugin-unicorn": "48.0.1",
"eslint-plugin-varspacing": "1.2.2",
"eslint-plugin-vue": "9.23.0",
"typescript": "5.4.5",
"unbuild": "^2.0.0",
"vitest": "^0.30.0"
}
}