-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 1 KB
/
Copy pathpackage.json
File metadata and controls
30 lines (30 loc) · 1 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
{
"name": "using-temporary-files",
"version": "2.3.0",
"description": "usingTemporaryFiles() - a utility for testing code that accesses the file system",
"type": "module",
"main": "./dist/using-temporary-files.js",
"types": "./dist/using-temporary-files.d.ts",
"scripts": {
"test": "npm run test:unit && npm run test:markdown",
"test:unit": "npm run build && node --experimental-test-coverage --test test/using-temporary-files.test.js",
"test:markdown": "npm run build && node --test test/markdown.test.mjs",
"lint": "eslint .",
"build": "tsc --declaration",
"format": "prettier --loglevel warn --write \"**/*.{js,css,md}\"",
"release": "npx changeset publish"
},
"author": "Patrick McElhaney",
"license": "MIT",
"devDependencies": {
"@changesets/cli": "^2.26.2",
"@types/node": "^20.11.19",
"eslint": "^8.44.0",
"eslint-config-hardcore": "^45.3.0",
"prettier": "^2.8.8",
"typescript": "^5.3.3"
},
"publishConfig": {
"access": "public"
}
}