-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.71 KB
/
Copy pathpackage.json
File metadata and controls
62 lines (62 loc) · 1.71 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
{
"name": "plugin-preloader",
"version": "1.0.0",
"author": "Kostiantyn Popovych <kostiantyn.popovych.exp@gmail.com> (https://github.com/KostiantynPopovych)",
"description": "This library dynamically preloads and installs Babel and ESLint plugins and presets based on your configuration, streamlining the build process without the need to include them as dependencies in your project.",
"repository": "git@github.com:upgradejs/plugin-preloader",
"bugs": "https://github.com/upgradejs/plugin-preloader/issues",
"license": "MIT",
"engines": {
"node": ">=10"
},
"scripts": {
"test": "jest",
"prebuild": "rimraf dist",
"build": "npx ts-node scripts/build.ts",
"prepublishOnly": "npm run build"
},
"types": "dist/index.d.ts",
"module": "dist/index.mjs",
"main": "dist/index.js",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"default": "./dist/index.js"
}
},
"files": [
"src/",
"dist/",
"CODE_OF_CONDUCT.md",
"CONTRIBUTING.md",
"CHANGELOG.md"
],
"keywords": [
"babel",
"eslint",
"preload",
"dynamic-install",
"plugins",
"presets",
"automation"
],
"devDependencies": {
"@types/babel__core": "^7.20.0",
"@types/eslint": "^8.21.3",
"@types/fancy-log": "^2.0.0",
"@types/jest": "^29.5.0",
"@types/node": "^18.15.3",
"@typescript-eslint/eslint-plugin": "^5.55.0",
"@typescript-eslint/parser": "^5.55.0",
"eslint": "^8.36.0",
"eslint-config-prettier": "^8.7.0",
"eslint-plugin-prettier": "^4.2.1",
"fancy-log": "^2.0.0",
"prettier": "^2.8.4",
"rimraf": "^4.4.0",
"ts-jest": "^29.0.5",
"tsup": "^6.7.0",
"typescript": "^4.9.5"
}
}