-
Notifications
You must be signed in to change notification settings - Fork 64
/
Copy pathpackage.json
71 lines (71 loc) · 1.5 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
67
68
69
70
71
{
"name": "@netlify/cache-utils",
"version": "5.2.0",
"description": "Utility for caching files in Netlify Build",
"type": "module",
"exports": "./lib/main.js",
"main": "./lib/main.js",
"types": "./lib/main.d.ts",
"files": [
"lib/**/*.{js,d.ts}"
],
"author": "Netlify Inc.",
"scripts": {
"prebuild": "rm -rf lib",
"build": "tsc",
"test": "vitest run",
"test:dev": "vitest",
"test:ci": "vitest run --reporter=default"
},
"keywords": [
"nodejs",
"javascript",
"windows",
"macos",
"linux",
"shell",
"bash",
"build",
"terminal",
"deployment",
"es6",
"serverless",
"continuous-integration",
"continuous-delivery",
"ci",
"continuous-deployment",
"plugins",
"continuous-testing",
"netlify-plugin",
"netlify"
],
"homepage": "https://github.com/netlify/build",
"repository": {
"type": "git",
"url": "https://github.com/netlify/build.git",
"directory": "packages/cache-utils"
},
"bugs": {
"url": "https://github.com/netlify/build/issues"
},
"license": "MIT",
"dependencies": {
"cpy": "^9.0.0",
"get-stream": "^6.0.0",
"globby": "^13.0.0",
"junk": "^4.0.0",
"locate-path": "^7.0.0",
"move-file": "^3.0.0",
"path-exists": "^5.0.0",
"readdirp": "^3.4.0"
},
"devDependencies": {
"@types/node": "^14.18.53",
"tmp-promise": "^3.0.0",
"typescript": "^5.0.0",
"vitest": "^3.0.0"
},
"engines": {
"node": "^14.16.0 || >=16.0.0"
}
}