-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
33 lines (33 loc) · 1003 Bytes
/
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
{
"name": "using-temporary-files",
"version": "2.2.1",
"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:jest --",
"lint": "eslint .",
"build": "tsc --declaration",
"format": "prettier --loglevel warn --write \"**/*.{js,css,md}\"",
"release": "npx changeset publish",
"test:jest": "node --experimental-vm-modules node_modules/jest/bin/jest.js"
},
"author": "Patrick McElhaney",
"license": "MIT",
"devDependencies": {
"@changesets/cli": "^2.26.2",
"@swc/core": "^1.4.2",
"@swc/jest": "^0.2.36",
"@types/jest": "^29.5.12",
"@types/node": "^20.11.19",
"eslint": "^8.44.0",
"eslint-config-hardcore": "^45.3.0",
"jest": "^29.5.0",
"prettier": "^2.8.8",
"typescript": "^5.3.3"
},
"publishConfig": {
"access": "public"
}
}