-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 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
46
47
48
49
50
51
{
"name": "markly",
"version": "0.2.0",
"description": "A micro subset of markdown.",
"license": "MIT",
"keywords": [
"markdown",
"mrkdwn",
"html"
],
"repository": {
"type": "git",
"url": "https://github.com/raymondjavaxx/markly.git"
},
"scripts": {
"lint": "eslint src/*",
"test": "jest",
"build": "tsc",
"format": "prettier --write src/*"
},
"jest": {
"collectCoverage": true,
"coverageReporters": [
"json",
"html"
]
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist",
"src"
],
"devDependencies": {
"@babel/core": "^7.17.8",
"@babel/preset-env": "^7.13.15",
"@babel/preset-typescript": "^7.13.0",
"@typescript-eslint/eslint-plugin": "^7.1.0",
"@typescript-eslint/parser": "^7.1.0",
"babel-jest": "^29.1.2",
"eslint": "^8.12.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"jest": "^29.1.2",
"mocha": "^10.0.0",
"prettier": "3.2.5",
"tslib": "^2.2.0",
"typescript": "^5.2.2"
}
}