generated from netlify/build-plugin-template
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.17 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
{
"name": "netlify-plugin-cache-folder",
"version": "0.0.8",
"description": "Netlify Build plugin - Netlify build plugin to cache the /_cache/ folder between builds",
"main": "src/index.js",
"files": [
"src",
"manifest.yml"
],
"keywords": [
"netlify",
"netlify-plugin",
"build",
"plugins"
],
"author": "Sia Karamalegos <[email protected]> (https://sia.codes/)",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/siakaramalegos/netlify-plugin-cache-folder.git"
},
"bugs": {
"url": "https://github.com/siakaramalegos/netlify-plugin-cache-folder/issues"
},
"homepage": "https://github.com/siakaramalegos/netlify-plugin-cache-folder#readme",
"directories": {
"lib": "src",
"test": "test"
},
"engines": {
"node": ">=10.22.0"
},
"scripts": {
"build": "netlify-build",
"test": "npm run ava",
"ava": "cross-env FORCE_COLOR=1 ava --verbose",
"release": "release-it"
},
"devDependencies": {
"@netlify/build": "^0.0.1",
"ava": "^3.13.0",
"cross-env": "^7.0.2",
"execa": "^4.0.3",
"netlify-cli": "^2.12.0",
"release-it": "^14.0.3"
}
}