Skip to content
This repository was archived by the owner on Jan 2, 2022. It is now read-only.

Commit daa6e71

Browse files
committed
fix: update package.json metadata
Signed-off-by: Jonah Snider <[email protected]>
1 parent e04f330 commit daa6e71

File tree

2 files changed

+201
-0
lines changed

2 files changed

+201
-0
lines changed

.npmignore

Lines changed: 195 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,195 @@
1+
# Created by https://www.gitignore.io/api/node,linux,macos,windows,visualstudiocode
2+
# Edit at https://www.gitignore.io/?templates=node,linux,macos,windows,visualstudiocode
3+
4+
### Linux ###
5+
*~
6+
7+
# temporary files which can be created if a process still has a handle open of a deleted file
8+
.fuse_hidden*
9+
10+
# KDE directory preferences
11+
.directory
12+
13+
# Linux trash folder which might appear on any partition or disk
14+
.Trash-*
15+
16+
# .nfs files are created when an open file is removed but is still being accessed
17+
.nfs*
18+
19+
### macOS ###
20+
# General
21+
.DS_Store
22+
.AppleDouble
23+
.LSOverride
24+
25+
# Icon must end with two \r
26+
Icon
27+
28+
# Thumbnails
29+
._*
30+
31+
# Files that might appear in the root of a volume
32+
.DocumentRevisions-V100
33+
.fseventsd
34+
.Spotlight-V100
35+
.TemporaryItems
36+
.Trashes
37+
.VolumeIcon.icns
38+
.com.apple.timemachine.donotpresent
39+
40+
# Directories potentially created on remote AFP share
41+
.AppleDB
42+
.AppleDesktop
43+
Network Trash Folder
44+
Temporary Items
45+
.apdisk
46+
47+
### Node ###
48+
# Logs
49+
logs
50+
*.log
51+
npm-debug.log*
52+
yarn-debug.log*
53+
yarn-error.log*
54+
lerna-debug.log*
55+
56+
# Diagnostic reports (https://nodejs.org/api/report.html)
57+
report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json
58+
59+
# Runtime data
60+
pids
61+
*.pid
62+
*.seed
63+
*.pid.lock
64+
65+
# Directory for instrumented libs generated by jscoverage/JSCover
66+
lib-cov
67+
68+
# Coverage directory used by tools like istanbul
69+
coverage
70+
*.lcov
71+
72+
# nyc test coverage
73+
.nyc_output
74+
75+
# Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files)
76+
.grunt
77+
78+
# Bower dependency directory (https://bower.io/)
79+
bower_components
80+
81+
# node-waf configuration
82+
.lock-wscript
83+
84+
# Compiled binary addons (https://nodejs.org/api/addons.html)
85+
build/Release
86+
87+
# Dependency directories
88+
node_modules/
89+
jspm_packages/
90+
91+
# TypeScript v1 declaration files
92+
typings/
93+
94+
# TypeScript cache
95+
*.tsbuildinfo
96+
97+
# Optional npm cache directory
98+
.npm
99+
100+
# Optional eslint cache
101+
.eslintcache
102+
103+
# Optional REPL history
104+
.node_repl_history
105+
106+
# Output of 'npm pack'
107+
*.tgz
108+
109+
# Yarn Integrity file
110+
.yarn-integrity
111+
112+
# dotenv environment variables file
113+
.env
114+
.env.test
115+
116+
# parcel-bundler cache (https://parceljs.org/)
117+
.cache
118+
119+
# next.js build output
120+
.next
121+
122+
# nuxt.js build output
123+
.nuxt
124+
125+
# react / gatsby
126+
public/
127+
128+
# vuepress build output
129+
.vuepress/dist
130+
131+
# Serverless directories
132+
.serverless/
133+
134+
# FuseBox cache
135+
.fusebox/
136+
137+
# DynamoDB Local files
138+
.dynamodb/
139+
140+
### VisualStudioCode ###
141+
.vscode/*
142+
!.vscode/settings.json
143+
!.vscode/tasks.json
144+
!.vscode/launch.json
145+
!.vscode/extensions.json
146+
147+
### VisualStudioCode Patch ###
148+
# Ignore all local history of files
149+
.history
150+
151+
### Windows ###
152+
# Windows thumbnail cache files
153+
Thumbs.db
154+
Thumbs.db:encryptable
155+
ehthumbs.db
156+
ehthumbs_vista.db
157+
158+
# Dump file
159+
*.stackdump
160+
161+
# Folder config file
162+
[Dd]esktop.ini
163+
164+
# Recycle Bin used on file shares
165+
$RECYCLE.BIN/
166+
167+
# Windows Installer files
168+
*.cab
169+
*.msi
170+
*.msix
171+
*.msm
172+
*.msp
173+
174+
# Windows shortcuts
175+
*.lnk
176+
177+
# End of https://www.gitignore.io/api/node,linux,macos,windows,visualstudiocode
178+
179+
# TypeDoc output folder
180+
docs_out
181+
182+
.dependabot
183+
.github
184+
.vscode
185+
src
186+
*.test.*
187+
!tsc_output/src
188+
.prettierrc
189+
.releaserc.json
190+
CODE-OF-CONDUCT.md
191+
CONTRIBUTING.md
192+
tsconfig.build.json
193+
tsconfig.json
194+
.editorconfig
195+
.yarnrc

package.json

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,12 @@
2222
"engines": {
2323
"node": "12"
2424
},
25+
"keywords": [
26+
"netlify",
27+
"netlify-plugin",
28+
"next.js",
29+
"nextjs"
30+
],
2531
"license": "Apache-2.0",
2632
"main": "./tsc_output/src/index.js",
2733
"name": "netlify-plugin-cache-nextjs",

0 commit comments

Comments
 (0)