UNPKG

2.49 kBJSONView Raw
1{
2 "name": "transpile-webpack-plugin",
3 "version": "1.0.3",
4 "license": "MIT",
5 "description": "Transpiles input files into output files individually without bundling together",
6 "keywords": [
7 "webpack",
8 "plugin",
9 "transpile",
10 "transpile-webpack-plugin"
11 ],
12 "author": "Chungen Li <licg9999@gmail.com> (https://github.com/licg9999)",
13 "bugs": "https://github.com/licg9999/transpile-webpack-plugin/issues",
14 "homepage": "https://github.com/licg9999/transpile-webpack-plugin",
15 "repository": "https://github.com/licg9999/transpile-webpack-plugin.git",
16 "engines": {
17 "node": ">=16"
18 },
19 "main": "lib/index.js",
20 "types": "lib/index.d.ts",
21 "files": [
22 "lib",
23 "modules.d.ts",
24 "src"
25 ],
26 "scripts": {
27 "build": "tsc --project additional-configs/tsconfig.build.json",
28 "watch": "npm run build -- --watch",
29 "unittest": "cross-env JEST_TEST_PATH=src jest",
30 "e2e": "cross-env JEST_TEST_PATH=e2e jest --maxWorkers 1",
31 "lint-all": "run-p lint:*",
32 "lint:tsc": "tsc",
33 "lint:prettier": "node scripts/cross-dotenv-shell prettier --check FILE_GLOB",
34 "lint:eslint": "node scripts/cross-dotenv-shell eslint FILE_GLOB",
35 "fix-all": "run-s fix:*",
36 "fix:prettier": "node scripts/cross-dotenv-shell prettier --write FILE_GLOB",
37 "fix:eslint": "node scripts/cross-dotenv-shell eslint --fix FILE_GLOB"
38 },
39 "peerDependencies": {
40 "webpack": "^5.61.0"
41 },
42 "dependencies": {
43 "lodash": "^4.17.21",
44 "resolve": "^1.22.1",
45 "schema-utils": "^4.0.0"
46 },
47 "devDependencies": {
48 "@commitlint/config-conventional": "^17.1.0",
49 "@trivago/prettier-plugin-sort-imports": "^3.4.0",
50 "@types/cross-spawn": "^6.0.2",
51 "@types/glob": "^8.0.0",
52 "@types/jest": "^28.1.8",
53 "@types/lodash": "^4.14.186",
54 "@types/node": "^18.11.9",
55 "@types/resolve": "^1.20.2",
56 "@types/uuid": "^8.3.4",
57 "@typescript-eslint/eslint-plugin": "^5.46.1",
58 "@typescript-eslint/parser": "^5.46.1",
59 "colorette": "^2.0.19",
60 "commander": "^9.4.1",
61 "cross-env": "^7.0.3",
62 "cross-spawn": "^7.0.3",
63 "dotenv": "^16.0.3",
64 "eslint": "^8.30.0",
65 "eslint-config-prettier": "^8.5.0",
66 "eslint-plugin-jest": "^27.1.7",
67 "glob": "^8.0.3",
68 "jest": "^28.1.3",
69 "jest-extended": "^3.1.0",
70 "npm-run-all": "^4.1.5",
71 "prettier": "^2.7.1",
72 "tree-kill": "^1.2.2",
73 "ts-jest": "^28.0.8",
74 "typescript": "^4.8.4",
75 "uuid": "^8.3.2",
76 "wait-for-expect": "^3.0.2"
77 }
78}