forked from shd101wyy/crossnote
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
97 lines (97 loc) · 2.55 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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
{
"name": "mume-with-litvis",
"version": "0.34.0",
"description": "Fork of mume with added http://litvis.org/",
"keywords": [
"markdown"
],
"repository": "https://github.com/gicentre/mume-with-litvis",
"license": "BSD-3, 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",
"prepublish": "npm run build",
"test": "jest --no-coverage",
"test:coverage": "jest"
},
"lint-staged": {
"**/*.*": [
"prettier --write",
"git add"
]
},
"dependencies": {
"apache-arrow": "^4.0.0",
"babyparse": "^0.4.6",
"block-attributes": "^0.4.0",
"block-info": "^0.4.0",
"cheerio": "1.0.0-rc.3",
"chrome-location": "^1.2.1",
"fs-extra": "^9.0.1",
"imagemagick-cli": "^0.5.0",
"js-yaml": "^3.14.0",
"less": "^3.12.2",
"litvis-integration-mume": "0.10.0",
"lodash": "^4.17.20",
"mkdirp": "^1.0.4",
"node-fetch": "^2.7.0",
"puppeteer-core": "1.15.0",
"qiniu": "^7.9.0",
"request": "^2.88.2",
"slash": "^3.0.0",
"temp": "^0.9.1",
"to-vfile": "^6.1.0",
"twemoji": "^13.1.0",
"uslug": "^1.0.4",
"vega": "^5.25.0",
"vega-embed": "^6.22.2",
"vega-lite": "^5.15.0",
"vega-loader": "^4.5.1",
"vega-loader-arrow": "^0.1.0",
"vfile": "^4.2.0",
"yamljs": "^0.3.0"
},
"devDependencies": {
"@types/cheerio": "0.22.21",
"@types/jest": "^29.5.4",
"@types/jquery": "^3.5.1",
"@types/less": "^3.0.1",
"@types/lru-cache": "^5.1.0",
"@types/markdown-it": "0.0.4",
"@types/mkdirp": "^1.0.1",
"@types/node": "^14.6.4",
"@types/uslug": "^1.0.0",
"@types/vfile": "^4.0.0",
"@types/vscode": "1.70.0",
"husky": "^7.0.2",
"jest": "^29.7.0",
"lint-staged": "^10.3.0",
"prettier": "^1.19.1",
"prettier-plugin-packagejson": "^2.2.5",
"ts-jest": "^29.1.1",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.18.0",
"typescript": "4.9.4"
}
}