This repository has been archived by the owner on Jul 23, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
66 lines (66 loc) · 1.86 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
58
59
60
61
62
63
64
65
66
{
"name": "@ematipico/terraform-nextjs-plugin",
"version": "4.0.0",
"description": "A nextjs plugin to generate cloud providers configuration for Terraform",
"main": "src/index.js",
"bin": "bin/terranext.js",
"scripts": {
"test": "jest --watch",
"test:ci-unix": "CI=true jest --colors --coverage --maxWorkers=4 --reporters=default --reporters=jest-junit && codecov -t 260305d4-6357-42d2-a73c-4c9b255d278a",
"test:ci-win": "jest --colors --coverage --maxWorkers=4 --reporters=default --reporters=jest-junit",
"release": "standard-version",
"ci": "rome ci . && pnpm run lint:types",
"lint": "pnpm run lint:files && pnpm run lint:types",
"lint:files": "rome check ./src ./bin ./tests",
"lint:fix": "pnpm run lint:files -- --apply-suggested",
"lint:types": "tsc",
"integration:build": "cd ./integration/app; node ./build.js"
},
"typings": "./src/index.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/ematipico/terraform-nextjs-plugin.git"
},
"keywords": [
"nextjs",
"terraform",
"serverless",
"plugin",
"aws",
"cloud",
"providers"
],
"author": "Emanuele Stoppa",
"license": "MIT",
"bugs": {
"url": "https://github.com/ematipico/terraform-nextjs-plugin/issues"
},
"homepage": "https://github.com/ematipico/terraform-nextjs-plugin#readme",
"devDependencies": {
"@types/jest": "26.0.20",
"@types/node": "14.14.28",
"codecov": "3.8.1",
"jest": "26.6.3",
"jest-junit": "12.0.0",
"next": "9.4.4",
"react": "16.13.1",
"react-dom": "16.13.1",
"rome": "0.10.1-next",
"standard-version": "9.1.0",
"typescript": "4.1.5"
},
"dependencies": {
"cosmiconfig": "7.0.0",
"meow": "9.0.0"
},
"engines": {
"node": ">= 12.x.x"
},
"peerDependencies": {
"next": ">=9.3.2"
},
"files": [
"bin/*",
"src/*"
]
}