This repository has been archived by the owner on Jan 17, 2023. It is now read-only.
forked from martpie/next-transpile-modules
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.56 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
{
"name": "@guaclive/next-transpile-modules",
"version": "3.3.3",
"main": "src/next-transpile-modules.js",
"license": "MIT",
"author": "Pierre de la Martinière <[email protected]>",
"description": "Next.js plugin to transpile code from node_modules (supports TypeScript)",
"scripts": {
"test": "jest",
"test:lint": "eslint .",
"test:formatting": "prettier --check \"**/*.js\"",
"test:formatting:fix": "prettier --check \"**/*.js\" --write"
},
"files": [
"index.js"
],
"repository": {
"type": "git",
"url": "git+https://github.com/martpie/next-transpile-modules.git"
},
"bugs": {
"url": "https://github.com/martpie/next-transpile-modules/issues"
},
"homepage": "https://github.com/martpie/next-transpile-modules#readme",
"keywords": [
"next",
"next.js",
"plugin",
"transpile",
"modules",
"babel",
"webpack"
],
"dependencies": {
"micromatch": "^4.0.2",
"slash": "^3.0.0"
},
"devDependencies": {
"@types/jest-environment-puppeteer": "^4.3.1",
"anymatch": "2.0.0",
"eslint": "6.8.0",
"eslint-config-prettier": "6.10.0",
"eslint-config-semistandard": "15.0.0",
"eslint-plugin-import": "2.20.1",
"eslint-plugin-jest": "23.8.2",
"eslint-plugin-node": "11.0.0",
"eslint-plugin-promise": "4.2.1",
"eslint-plugin-standard": "4.0.1",
"jest": "25.1.0",
"jest-environment-puppeteer": "^4.4.0",
"jest-puppeteer": "^4.4.0",
"prettier": "1.19.1",
"prettier-eslint": "9.0.1",
"puppeteer": "^2.1.1",
"rewire": "4.0.1"
}
}