-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.34 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.34 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
{
"name": "@markedjs/testutils",
"version": "17.0.1-2",
"description": "Test utilities for marked and marked extensions",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"exports": {
".": {
"import": "./lib/index.js",
"types": "./lib/index.d.ts"
}
},
"type": "module",
"scripts": {
"build": "tsc",
"test": "npm run build && node --import tsx --test test/*.test.ts",
"test:lint": "eslint .",
"test:format": "prettier . --check",
"test:types": "attw --pack . --ignore-rules=cjs-resolves-to-esm",
"lint": "eslint . --fix",
"format": "prettier . --write"
},
"files": [
"lib/"
],
"repository": {
"type": "git",
"url": "git+https://github.com/markedjs/testutils.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/markedjs/testutils/issues"
},
"homepage": "https://github.com/markedjs/testutils#readme",
"dependencies": {
"@markedjs/html-differ": "^5.0.4",
"front-matter": "^4.0.2",
"marked": "17.0.2",
"marked-repo": "https://github.com/markedjs/marked/tarball/v17.0.1"
},
"devDependencies": {
"@arethetypeswrong/cli": "^0.18.2",
"@eslint/js": "^10.0.1",
"@types/node": "^25.3.3",
"eslint": "^10.0.2",
"globals": "^17.4.0",
"prettier": "^3.8.1",
"tsx": "^4.7.1",
"typescript": "^5.7.2"
}
}