-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.51 KB
/
Copy pathpackage.json
File metadata and controls
69 lines (69 loc) · 1.51 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
{
"name": "nole",
"version": "3.4.0",
"type": "module",
"description": "Testing Library for Typescript projects",
"main": "./dist/cjs/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/cjs/index.js"
},
"./package.json": "./package.json"
},
"repository": {
"type": "git",
"url": "https://github.com/co3moz/nole"
},
"bin": {
"nole": "./bin/nole.js"
},
"scripts": {
"build": "npm run build:esm && npm run build:cjs",
"build:esm": "tsc",
"build:cjs": "tsc -p tsconfig.cjs.json && node ./scripts/cjs-package.mjs",
"test": "node ./bin/nole.js './test/**/*.test.{ts,js}' './src/**/*.test.ts' -c 4",
"coverage": "c8 node ./bin/nole.js './test/**/*.test.{ts,js}' './src/**/*.test.ts'"
},
"keywords": [
"typescript",
"test",
"library"
],
"author": "co3moz",
"license": "MIT",
"dependencies": {
"colors": "^1.4.0",
"commander": "^15.0.0",
"glob": "^13.0.6"
},
"peerDependencies": {
"tsx": "^4.21.0"
},
"devDependencies": {
"@types/node": "^26.1.1",
"c8": "^12.0.0",
"tsx": "^4.23.1",
"typescript": "^7.0.2"
},
"c8": {
"all": true,
"check-coverage": true,
"report-dir": "./coverage",
"reporter": [
"text",
"lcovonly",
"text-summary"
],
"include": [
"src/**/*.ts"
],
"exclude": [
"**/*.test.ts",
"dist/**"
]
}
}