forked from HabitRPG/habitica-markdown
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.22 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
{
"name": "habitica-markdown",
"version": "3.0.0",
"description": "A markdown-it module pre-configured for use in Habitica",
"main": "index.js",
"scripts": {
"build": "npm install --force && webpack --config webpack.config.js --mode=${TARGET_ENV:-production}",
"build:dev": "TARGET_ENV=development npm run build",
"lint": "eslint .",
"test": "npm run lint && mocha --recursive"
},
"repository": {
"type": "git",
"url": "git+https://github.com/HabitRPG/habitica-markdown.git"
},
"keywords": [
"habitica",
"habitrpg",
"markdown",
"markdown-it"
],
"author": "Blade Barringer <blade@crookedneighbor.com>",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/HabitRPG/habitica-markdown/issues"
},
"homepage": "https://github.com/HabitRPG/habitica-markdown#readme",
"devDependencies": {
"chai": "^4.2.0",
"eslint": "^6.8.0",
"eslint-config-habitrpg": "^6.2.0",
"eslint-plugin-mocha": "^6.3.0",
"mocha": "^7.1.1",
"webpack": "^4.42.1",
"webpack-cli": "^3.3.11"
},
"dependencies": {
"habitica-markdown-emoji": "1.2.4",
"markdown-it": "10.0.0",
"markdown-it-link-attributes": "3.0.0",
"markdown-it-linkify-images": "^1.1.1"
}
}