-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (50 loc) · 1.09 KB
/
Copy pathpackage.json
File metadata and controls
51 lines (50 loc) · 1.09 KB
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
{
"name": "wireit-cache-validate",
"version": "0.0.1",
"description": "Validate if Wireit script is fully cached with subsequent runs.",
"bin": {
"wireit-cache-validate": "./src/index.mjs"
},
"main": "src/index.mjs",
"files": [
"./src/index.mjs",
"./README.md",
"./LICENSE"
],
"scripts": {
"test": "node --test test/**/*.test.mjs",
"cache": "wireit",
"cache:validate": "pnpm cache && ./src/index.mjs pnpm cache",
"nocache": "wireit",
"nocache:validate": "node ./src/test.mjs && ./src/index.mjs pnpm nocache"
},
"keywords": [
"wireit"
],
"author": "Cory Rylan",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/blueprintui/wireit-cache-validate"
},
"packageManager": "pnpm@9.15.0",
"wireit": {
"cache": {
"command": "echo 'text'",
"files": [],
"output": []
},
"nocache": {
"command": "node ./src/test.mjs",
"files": [
"src/test.mjs"
],
"output": [
"dist/test.txt"
]
}
},
"devDependencies": {
"wireit": "^0.14.12"
}
}