-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 1.67 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 1.67 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
{
"name": "docutils-ts",
"version": "1.0.7",
"description": "Port of the Python Docutils library to TypeScript",
"repository": {
"type": "git",
"url": "https://github.com/boltex/docutils-ts.git"
},
"bugs": {
"url": "https://github.com/boltex/docutils-ts/issues"
},
"homepage": "https://github.com/boltex/docutils-ts#readme",
"type": "module",
"module": "./dist/src/index.js",
"types": "./dist/src/index.d.ts",
"exports": {
".": {
"import": "./dist/src/index.js",
"types": "./dist/src/index.d.ts"
},
"./core": {
"import": "./dist/src/core.js",
"types": "./dist/src/core.d.ts"
},
"./languages": {
"import": "./dist/src/languages/index.js",
"types": "./dist/src/languages/index.d.ts"
}
},
"bin": {
"rst2html": "./dist/tools/rst2html.js",
"rst2xml": "./dist/tools/rst2xml.js"
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"scripts": {
"test": "jest",
"clearTest": "jest --updateSnapshot",
"prepublishOnly": "npm run build",
"build": "rm -rf dist && tsc"
},
"keywords": [
"docutils",
"typescript"
],
"author": "Félix Malboeuf",
"license": "MIT",
"devDependencies": {
"@types/jest": "^29.5.14",
"@types/sinon": "^7.0.13",
"@typescript-eslint/eslint-plugin": "^8.33.0",
"@typescript-eslint/parser": "^8.33.0",
"eslint": "^9.27.0",
"jest": "^29.7.0",
"sinon": "^7.3.2",
"ts-jest": "^29.3.4",
"typescript": "^5.8.3"
},
"dependencies": {
"@types/argparse": "^1.0.36",
"@types/ejs": "^3.1.5",
"@types/node": "^22.15.3",
"argparse": "^1.0.10",
"camelcase": "^5.3.0",
"ejs": "^3.1.10"
}
}