-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.65 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
{
"name": "@closeio/test-console",
"version": "0.2.2",
"description": "Library for handling console logs in tests in a flexible way",
"keywords": [],
"author": "Trey Cucco <[email protected]>",
"license": "MIT",
"engines": {
"node": ">=14",
"npm": ">=6"
},
"exports": {
".": {
"import": {
"types": "./lib/index.d.mts",
"default": "./lib/index.mjs"
},
"require": {
"types": "./lib/index.d.ts",
"default": "./lib/index.js"
}
}
},
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"files": [
"lib/**/*"
],
"repository": {
"type": "git",
"url": "git+https://github.com/closeio/test-console.git"
},
"scripts": {
"clean": "rm -rf ./lib",
"build": "npm run clean && tsup-node src/index.ts -d lib --format esm,cjs --dts",
"prepack": "npm run build",
"check": "npm run typecheck && npm run prettier:check && npm run lint && npm run test:coverage",
"test": "jest",
"test:coverage": "jest --coverage",
"test:watch": "jest --watch",
"typecheck": "tsc",
"lint": "eslint src/ tests/",
"prettier:check": "prettier --check src/ tests/",
"prettier:fix": "prettier --fix src/ tests/"
},
"devDependencies": {
"@babel/core": "^7.19.3",
"@babel/preset-env": "^7.19.4",
"@babel/preset-typescript": "^7.18.6",
"@types/jest": "^29.1.2",
"@types/node": "^16.11.65",
"@typescript-eslint/eslint-plugin": "^5.40.0",
"@typescript-eslint/parser": "^5.40.0",
"babel-jest": "^29.1.2",
"eslint": "^8.25.0",
"jest": "^29.1.2",
"prettier": "^2.7.1",
"tsup": "^8.2.4",
"typescript": "^5.5.4"
}
}