-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 1.71 KB
/
Copy pathpackage.json
File metadata and controls
80 lines (80 loc) · 1.71 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
70
71
72
73
74
75
76
77
78
79
80
{
"name": "texample",
"version": "1.0.2",
"description": "Execute your README markdown javascript examples",
"type": "module",
"module": "./src/index.js",
"main": "./lib/index.cjs",
"types": "./types/index.d.ts",
"exports": {
".": {
"types": "./types/index.d.ts",
"require": "./dist/index.cjs",
"import": "./src/index.js"
}
},
"bin": {
"texample": "bin/texample.cjs"
},
"engines": {
"node": ">=18"
},
"author": {
"name": "Zerodep AB",
"url": "https://github.com/zerodep"
},
"repository": {
"type": "git",
"url": "git+https://github.com/zerodep/texample.git"
},
"scripts": {
"test": "mocha",
"posttest": "npm run lint && npm run dist",
"lint": "eslint . --cache && prettier . --check --cache",
"prepare": "npm run dist",
"test:lcov": "c8 -r lcov mocha && npm run lint",
"cov:html": "c8 mocha && c8 report --reporter html",
"dist": "rollup -c && dts-buddy"
},
"keywords": [
"readme",
"markdown",
"example",
"test",
"vm",
"SourceTextModule",
"SyntheticModule"
],
"license": "MIT",
"devDependencies": {
"@0dep/piso": "^4.0.0",
"@eslint/js": "^10.0.1",
"@rollup/plugin-commonjs": "^29.0.0",
"@types/chai": "^5.2.0",
"@types/mocha": "^10.0.6",
"@types/node": "^22.19.17",
"c8": "^11.0.0",
"chai": "^6.0.1",
"chronokinesis": "^8.0.0",
"dts-buddy": "^0.7.0",
"eslint": "^10.2.1",
"globals": "^17.5.0",
"mocha": "^11.1.0",
"nock": "^14.0.13",
"prettier": "^3.2.5",
"rollup": "^4.17.2",
"ts-node": "^10.9.2"
},
"c8": {
"include": [
"src/"
]
},
"files": [
"bin",
"src",
"types",
"dist",
"cli.cjs"
]
}