forked from shd101wyy/crossnote
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
83 lines (83 loc) · 2.12 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
75
76
77
78
79
80
81
82
83
{
"name": "@shd101wyy/mume",
"version": "0.6.9",
"description": "A powerful markdown tool",
"keywords": [
"markdown"
],
"repository": "https://github.com/shd101wyy/mume",
"license": "NCSA",
"contributors": [
"shd101wyy",
"kachkaev",
"gabyx"
],
"main": "out/src/mume.js",
"typings": "out/src/mume.d.ts",
"files": [
"dependencies",
"docs",
"out",
"styles"
],
"scripts": {
"build": "tsc --project .",
"build:watch": "tsc --project . --watch",
"check:all": "npm run check:prettier && npm run check:tsc && npm run check:tslint",
"check:prettier": "prettier --check \"**/*.*\"",
"check:tsc": "tsc --project . --noEmit",
"check:tslint": "tslint --project .",
"fix": "npm run fix:tslint && npm run fix:prettier",
"fix:prettier": "prettier --write \"**/*.*\"",
"fix:tslint": "tslint --fix --project .",
"prepare": "husky install && npm run build",
"test": "jest --no-coverage",
"test:coverage": "jest"
},
"lint-staged": {
"**/*.*": [
"prettier --write",
"git add"
]
},
"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.15",
"mkdirp": "^1.0.4",
"node-fetch": "^2.6.1",
"puppeteer-core": "1.15.0",
"qiniu": "^7.2.2",
"request": "^2.88.0",
"slash": "^2.0.0",
"temp": "^0.9.0",
"twemoji": "^12.1.5",
"uslug": "^1.0.4",
"vega-loader": "^4.1.0",
"yamljs": "^0.3.0"
},
"devDependencies": {
"@types/cheerio": "0.22.11",
"@types/jest": "^27.0.2",
"@types/jquery": "^3.3.29",
"@types/markdown-it": "0.0.4",
"@types/mkdirp": "^1.0.0",
"@types/node": "^12.0.10",
"@types/vfile": "^3.0.2",
"@types/vscode": "1.40.0",
"husky": "^7.0.2",
"jest": "^27.2.4",
"lint-staged": "^10.3.0",
"prettier": "^1.19.1",
"prettier-plugin-packagejson": "^2.2.5",
"ts-jest": "^27.0.5",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.18.0",
"typescript": "^4.4.3"
}
}