-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) · 2.93 KB
/
package.json
File metadata and controls
86 lines (86 loc) · 2.93 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
81
82
83
84
85
86
{
"name": "x2md",
"version": "1.0.1",
"description": "Collection of small utilities that convert input values into strings suitable for Markdown formatting.",
"type": "module",
"private": false,
"keywords": [
"markdown",
"nodejs",
"typescript"
],
"author": "F88 <685250+F88@users.noreply.github.com>",
"contributors": [],
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/F88/x2md.git"
},
"bugs": "https://github.com/F88/x2md/issues",
"engines": {
"node": ">= 22"
},
"main": "lib/index.js",
"types": "dist/x2md.d.ts",
"exports": {
".": {
"types": "./dist/x2md.d.ts",
"import": "./lib/index.js",
"require": "./lib/index.js"
}
},
"scripts": {
"clean": "rimraf dist lib coverage docs markdown",
"prettier:check": "prettier --check \"{src,test,scripts}/**/*.{js,json,mjs,ts}\" \"*.{md,json,ts}\"",
"prettier:write": "prettier --write \"{src,test,scripts}/**/*.{js,json,mjs,ts}\" \"*.{md,json,ts}\"",
"format": "npm run prettier:write",
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"test:bitbucket-pipeline": "vitest run --reporter=default --reporter=junit --outputFile.junit=test-results/junit-report.xml",
"test:codecov": "vitest run --coverage --reporter=default --reporter=junit --outputFile.junit=test-report.junit.xml",
"prebuild": "npm run clean && tsc --project tsconfig.json && npm run prettier:write && npm run lint:fix && npm run test:codecov",
"build": "tsc --project tsconfig.json",
"build:watch": "tsc --watch --project tsconfig.json",
"build:release": "npm run clean && npm run prettier:write && npm run lint:fix && tsc --project tsconfig.release.json && npm run test:codecov && npm run api-extractor && npm run api-documenter",
"api-extractor": "api-extractor run --local --verbose",
"api-extractor:diagnostics": "api-extractor run --local --verbose --diagnostics",
"api-documenter": "api-documenter markdown -i temp -o docs"
},
"devDependencies": {
"@changesets/cli": "~2.29",
"@eslint/js": "~9.39",
"@faker-js/faker": "~10.2.0",
"@microsoft/api-documenter": "~7.28",
"@microsoft/api-extractor": "~7.55",
"@types/node": "~22",
"@typescript-eslint/parser": "~8.53",
"@vitest/coverage-v8": "~4.0.17",
"@vitest/eslint-plugin": "~1.6",
"eslint": "~9.39",
"eslint-config-prettier": "~10.1",
"globals": "~17.0",
"prettier": "~3.7",
"rimraf": "~6.1",
"ts-api-utils": "~2.4.0",
"tsx": "~4.21",
"typescript": "~5.9",
"typescript-eslint": "~8.53",
"vitest": "~4.0.17"
},
"files": [
"README.md",
"LICENSE",
"lib/**/*.js",
"!lib/**/*.test.*",
"dist/*.d.ts",
"dist/tsdoc-metadata.json"
],
"publishConfig": {
"registry": "https://registry.npmjs.org",
"access": "public",
"provenance": true
}
}