UNPKG

3.02 kBJSONView Raw
1{
2 "name": "next-transpile-modules",
3 "version": "7.1.0",
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 "src/next-transpile-modules.d.ts"
11 ],
12 "scripts": {
13 "setup": "node --trace-uncaught src/__tests__/setup.js",
14 "update:next": "npm run setup && bash scripts/next-update.sh",
15 "typings": "tsc",
16 "prepublishOnly": "npm run typings",
17 "pretest": "npm run setup",
18 "quickie": "node --trace-uncaught src/__tests__/setup.js && yarn --cwd src/__tests__/__apps__/webpack-4/app run build",
19 "test": "jest --forceExit",
20 "test:debug": "jest --detectOpenHandles --forceExit",
21 "test:lint": "eslint .",
22 "test:formatting": "prettier --check \"**/*.js\"",
23 "test:formatting:fix": "prettier --check \"**/*.js\" --write",
24 "test:prepare:npm-basic": "npm run build --prefix=src/__tests__/__apps__/npm-basic",
25 "test:prepare:yarn-workspaces": "yarn --cwd src/__tests__/__apps__/yarn-workspaces/app run build",
26 "test:prepare:yarn-workspaces-symlinks": "yarn --cwd src/__tests__/__apps__/yarn-workspaces-symlinks/app run build",
27 "test:prepare:webpack-4": "yarn --cwd src/__tests__/__apps__/webpack-4/app run build",
28 "test:prepare:webpack-4-symlinks": "yarn --cwd src/__tests__/__apps__/webpack-4-symlinks/app run build",
29 "test:prepare:pnpm": "npm run build --prefix=src/__tests__/__apps__/pnpm",
30 "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-4 && npm run test:prepare:webpack-4-symlinks && npm run test:prepare:pnpm"
31 },
32 "repository": {
33 "type": "git",
34 "url": "git+https://github.com/martpie/next-transpile-modules.git"
35 },
36 "bugs": {
37 "url": "https://github.com/martpie/next-transpile-modules/issues"
38 },
39 "homepage": "https://github.com/martpie/next-transpile-modules#readme",
40 "keywords": [
41 "next",
42 "next.js",
43 "plugin",
44 "transpile",
45 "modules",
46 "babel",
47 "webpack"
48 ],
49 "dependencies": {
50 "enhanced-resolve": "^5.7.0",
51 "escalade": "^3.1.1"
52 },
53 "devDependencies": {
54 "@types/jest-environment-puppeteer": "4.4.1",
55 "eslint": "^7.18.0",
56 "eslint-config-prettier": "^7.2.0",
57 "eslint-config-semistandard": "^15.0.1",
58 "eslint-plugin-import": "^2.22.1",
59 "eslint-plugin-jest": "^24.1.3",
60 "eslint-plugin-node": "^11.1.0",
61 "eslint-plugin-promise": "^4.2.1",
62 "eslint-plugin-standard": "^5.0.0",
63 "fs-extra": "^9.1.0",
64 "jest": "^26.6.3",
65 "jest-environment-node": "^26.6.2",
66 "jest-environment-puppeteer": "^4.4.0",
67 "jest-puppeteer": "^4.4.0",
68 "prettier": "^2.2.1",
69 "prettier-eslint": "^12.0.0",
70 "puppeteer": "^5.5.0",
71 "rewire": "^4.0.1",
72 "typescript": "^3.9.7",
73 "webpack": "^4.44.0"
74 }
75}