-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 818 Bytes
/
package.json
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
{
"name": "tiny-marked",
"version": "1.0.0",
"description": "A ≈1kb markdown parser with tree output and Typescript typings",
"main": "./lib/index.js",
"module": "./lib/index.js",
"types": "./lib/index.d.ts",
"sideEffects": false,
"scripts": {
"build": "tsc",
"test": "tsc & jest"
},
"keywords": [
"markdown",
"parser",
"string",
"tiny"
],
"repository": {
"type": "git",
"url": "git+https://github.com/richie-south/marked.git"
},
"author": "richard söderman",
"bugs": {
"url": "https://github.com/richie-south/marked/issues"
},
"homepage": "https://github.com/richie-south/marked#readme",
"license": "MIT",
"devDependencies": {
"@types/jest": "^29.5.13",
"jest": "^29.7.0",
"ts-jest": "^29.2.5",
"typescript": "^5.6.3"
}
}