forked from danestves/markdown-to-text
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
37 lines (37 loc) · 975 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
36
37
{
"name": "@excalidraw/markdown-to-text",
"version": "0.1.2",
"description": "Parse the markdown and returns a string",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"author": {
"email": "[email protected]",
"name": "Daniel Esteves",
"url": "https://danestves.com"
},
"keywords": [
"markdown",
"text",
"ts"
],
"repository": {
"type": "git",
"url": "https://github.com/danestves/markdown-to-text.git"
},
"homepage": "https://github.com/danestves/markdown-to-text.git",
"scripts": {
"build": "npm run test && tsc",
"prepublish": "npm run test && tsc",
"test": "env TS_NODE_COMPILER_OPTIONS='{\"module\": \"commonjs\" }' mocha -r ts-node/register 'test/**/*.ts'"
},
"devDependencies": {
"chai": "^4.2.0",
"mocha": "^8.2.1",
"should": "^13.2.3",
"ts-node": "^9.1.1",
"typescript": "^4.1.3",
"@types/chai": "^4.2.14",
"@types/mocha": "^8.2.0"
},
"license": "MIT"
}