UNPKG

2.89 kBJSONView Raw
1{
2 "name": "next-transpile-modules",
3 "version": "6.4.1",
4 "license": "MIT",
5 "author": "Pierre de la Martinière <pierre.de.la.martiniere@gmail.com>",
6 "description": "Next.js plugin to transpile code from node_modules (supports TypeScript)",
7 "main": "src/next-transpile-modules.js",
8 "files": [
9 "src/next-transpile-modules.js"
10 ],
11 "scripts": {
12 "setup": "node --trace-uncaught src/__tests__/setup.js",
13 "update:next": "npm run setup && bash scripts/next-update.sh",
14 "pretest": "npm run setup",
15 "quickie": "node --trace-uncaught src/__tests__/setup.js && yarn --cwd src/__tests__/__apps__/webpack-5/app run build",
16 "test": "jest --forceExit",
17 "test:debug": "jest --detectOpenHandles --forceExit",
18 "test:lint": "eslint .",
19 "test:formatting": "prettier --check \"**/*.js\"",
20 "test:formatting:fix": "prettier --check \"**/*.js\" --write",
21 "test:prepare:npm-basic": "npm run build --prefix=src/__tests__/__apps__/npm-basic",
22 "test:prepare:yarn-workspaces": "yarn --cwd src/__tests__/__apps__/yarn-workspaces/app run build",
23 "test:prepare:yarn-workspaces-symlinks": "yarn --cwd src/__tests__/__apps__/yarn-workspaces-symlinks/app run build",
24 "test:prepare:webpack-5": "yarn --cwd src/__tests__/__apps__/webpack-5/app run build",
25 "test:prepare:webpack-5-symlinks": "yarn --cwd src/__tests__/__apps__/webpack-5-symlinks/app run build",
26 "test:prepare:pnpm": "npm run build --prefix=src/__tests__/__apps__/pnpm",
27 "test:prepare": "npm run test:prepare:npm-basic && npm run test:prepare:yarn-workspaces && npm run test:prepare:yarn-workspaces-symlinks && npm run test:prepare:webpack-5 && npm run test:prepare:webpack-5-symlinks && npm run test:prepare:pnpm"
28 },
29 "repository": {
30 "type": "git",
31 "url": "git+https://github.com/martpie/next-transpile-modules.git"
32 },
33 "bugs": {
34 "url": "https://github.com/martpie/next-transpile-modules/issues"
35 },
36 "homepage": "https://github.com/martpie/next-transpile-modules#readme",
37 "keywords": [
38 "next",
39 "next.js",
40 "plugin",
41 "transpile",
42 "modules",
43 "babel",
44 "webpack"
45 ],
46 "dependencies": {
47 "enhanced-resolve": "^5.7.0",
48 "escalade": "^3.1.1"
49 },
50 "devDependencies": {
51 "@types/jest-environment-puppeteer": "4.4.1",
52 "eslint": "^7.18.0",
53 "eslint-config-prettier": "^7.2.0",
54 "eslint-config-semistandard": "^15.0.1",
55 "eslint-plugin-import": "^2.22.1",
56 "eslint-plugin-jest": "^24.1.3",
57 "eslint-plugin-node": "^11.1.0",
58 "eslint-plugin-promise": "^4.2.1",
59 "eslint-plugin-standard": "^5.0.0",
60 "fs-extra": "^9.1.0",
61 "jest": "^26.6.3",
62 "jest-environment-node": "^26.6.2",
63 "jest-environment-puppeteer": "^4.4.0",
64 "jest-puppeteer": "^4.4.0",
65 "prettier": "^2.2.1",
66 "prettier-eslint": "^12.0.0",
67 "puppeteer": "^5.5.0",
68 "rewire": "^4.0.1",
69 "webpack": "^4.44.0"
70 }
71}