forked from shd101wyy/crossnote
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
67 lines (67 loc) · 1.76 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
{
"name": "@shd101wyy/mume",
"version": "0.4.6",
"description": "A powerful markdown tool",
"main": "out/src/mume.js",
"typings": "out/src/mume.d.ts",
"scripts": {
"test": "jest --no-coverage",
"test:coverage": "jest",
"build": "tsc --project .",
"build:watch": "tsc --project . --watch",
"lint": "tsc --project . --noEmit && tslint --project . && prettier-check --ignore-path .gitignore \"{.,src/**,test/**}/{*.{j,t}s,*.md,ts*.json}\"",
"format": "prettier --write --ignore-path .gitignore \"{.,src/**,test/**}/{*.{j,t}s,*.md,ts*.json}\"",
"prepare": "npm run build"
},
"files": [
"dependencies",
"docs",
"out",
"styles"
],
"keywords": [
"markdown"
],
"contributors": [
"shd101wyy",
"kachkaev"
],
"license": "NCSA",
"repository": "https://github.com/shd101wyy/mume",
"dependencies": {
"babyparse": "^0.4.6",
"cheerio": "^1.0.0-rc.3",
"chrome-location": "^1.2.1",
"fs-extra": "^8.0.1",
"imagemagick-cli": "^0.5.0",
"js-yaml": "^3.13.1",
"less": "^3.9.0",
"lodash": "^4.17.11",
"mkdirp": "^0.5.1",
"node-fetch": "^2.6.0",
"puppeteer-core": "1.15.0",
"qiniu": "^7.2.2",
"request": "^2.88.0",
"slash": "^2.0.0",
"temp": "^0.9.0",
"twemoji": "^12.0.4",
"uslug": "^1.0.4",
"vega-loader": "^4.1.0",
"yamljs": "^0.3.0"
},
"devDependencies": {
"@types/cheerio": "^0.22.11",
"@types/jest": "^24.0.15",
"@types/jquery": "^3.3.29",
"@types/markdown-it": "0.0.4",
"@types/node": "^12.0.10",
"@types/vfile": "^3.0.2",
"jest": "^24.8.0",
"prettier": "^1.18.2",
"prettier-check": "^2.0.0",
"ts-jest": "^24.0.2",
"tslint": "^5.18.0",
"tslint-config-prettier": "^1.18.0",
"typescript": "3.0"
}
}