-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
45 lines (45 loc) · 1.1 KB
/
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
36
37
38
39
40
41
42
43
44
45
{
"name": "@croct/md-lite",
"version": "0.0.0-dev",
"description": "A minimalist Markdown parser and render for basic formatting.",
"author": {
"name": "croct",
"email": "[email protected]",
"url": "https://github.com/croct-tech/md-lite-js"
},
"license": "MIT",
"keywords": [
"croct",
"typescript",
"markdown"
],
"types": "index.d.ts",
"main": "index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/croct-tech/md-lite-js.git"
},
"bugs": {
"url": "https://github.com/croct-tech/md-lite-js/issues"
},
"homepage": "https://github.com/croct-tech/md-lite-js",
"scripts": {
"lint": "eslint 'src/**/*.ts' 'test/**/*.ts'",
"test": "jest -c jest.config.js --coverage",
"validate": "tsc --noEmit",
"build": "tsc -p tsconfig.build.json"
},
"devDependencies": {
"@croct/eslint-plugin": "^0.7.0",
"@swc/jest": "^0.2.24",
"@types/jest": "^29.0.0",
"@typescript-eslint/parser": "^6.0.0",
"eslint": "^8.22",
"jest": "^29.0.0",
"typescript": "^5.0.0"
},
"files": [
"**/*.js",
"**/*.ts"
]
}