-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
74 lines (74 loc) · 1.74 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"name": "@huskiesio/message-renderer",
"version": "0.1.4",
"description": "🖋 Turns Markdown-like strings into beautiful JSX",
"keywords": [
"markdown",
"jsx",
"katex",
"math",
"highlight",
"code"
],
"main": "js/index",
"types": "dts/index",
"files": [
"js",
"dts"
],
"scripts": {
"test": "npm run lint && jest",
"prepublishOnly": "npm run compile",
"compile": "npm run clean && tsc -p tsconfig.json",
"watch": "tsc -w -p .",
"clean": "rm -rf js/*.js js/*.js.map js/tests/*.js js/tests/*.map dts",
"start": "node js/index.js",
"lint": "tslint -c tslint.json ts/**",
"lint-fix": "tslint -c tslint.json --fix ts/**"
},
"repository": {
"type": "git",
"url": "git+https://github.com/huskiesio/message-renderer.git"
},
"publishConfig": {
"access": "public"
},
"author": "Max Isom <[email protected]> (https://maxisom.me/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/huskiesio/message-renderer/issues"
},
"homepage": "https://github.com/huskiesio/message-renderer#readme",
"dependencies": {
"highlight.js": "^9.18.1",
"markdown-it": "^10.0.0",
"markdown-it-katex": "^2.0.3",
"react": "^16.12.0",
"react-dom": "^16.12.0"
},
"devDependencies": {
"@types/highlight.js": "^9.12.3",
"@types/jest": "latest",
"@types/markdown-it": "0.0.9",
"@types/node": "latest",
"@types/react": "16.7.18",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.2",
"jest": "latest",
"jest-environment-enzyme": "^7.1.2",
"jest-enzyme": "^7.1.2",
"jsdom": "16.2.0",
"jsdom-global": "3.0.2",
"tslint": "^6.0.0",
"typescript": "latest"
},
"jest": {
"setupFilesAfterEnv": [
"jest-enzyme"
],
"testEnvironment": "enzyme",
"testEnvironmentOptions": {
"enzymeAdapter": "react16"
}
}
}