forked from arnog/mathlive
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
132 lines (132 loc) · 4.07 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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
{
"name": "mathlive",
"version": "0.56.0",
"description": "Render and edit beautifully typeset math",
"license": "MIT",
"funding": {
"type": "patreon",
"url": "https://patreon.com/arnog"
},
"repository": {
"type": "git",
"url": "https://github.com/arnog/mathlive.git"
},
"bugs": "https://github.com/arnog/mathlive/issues/",
"scripts": {
"build": "bash ./scripts/build.sh",
"clean": "rimraf build dist coverage",
"dist": "bash ./scripts/build.sh production",
"lint": "eslint --fix src/",
"start": "bash ./scripts/build.sh watch",
"test": "bash ./scripts/test.sh",
"version": "bash ./scripts/version.sh",
"postversion": "bash ./scripts/github-release.sh"
},
"main": "./dist/mathlive.js",
"module": "./dist/mathlive.mjs",
"types": "./dist/public/mathlive.d.ts",
"files": [
"/dist"
],
"prettier": {
"singleQuote": true,
"trailingComma": "es5",
"endOfLine": "lf",
"tabWidth": 4,
"jsxSingleQuote": true
},
"husky": {
"hooks": {
"pre-commit": "lint-staged && bash ./scripts/pre-commit.sh",
"pre-push": "npm test"
}
},
"lint-staged": {
"/src/**/*.ts": [
"eslint --fix"
],
"/src/**/*.{ts,css,json,less}": [
"prettier --write"
],
"/*.md": [
"prettier --write"
]
},
"engines": {
"npm": ">=6.14.5",
"node": ">=12.16.3"
},
"browserslist": [
"> 1%",
"last 2 versions",
"maintained node versions",
"not dead"
],
"author": "Arno Gourdol <[email protected]>",
"contributors": [
"Louis Larpin (lilfaf.github.io)",
"Neil Soiffer (https://github.com/NSoiffer)",
"Jason Boxman (https://github.com/jboxman)",
"Synergy Codes (https://www.synergycodes.com/)",
"Rafał Piekarski (https://github.com/rpdiss)",
"Kajetan Champlewski <[email protected]>",
"Fabian Grewing <[email protected]>",
"Paul Masson <[email protected]>",
"Soroush Javadi <[email protected]>",
"Thomas Schell <[email protected]>",
"leerobert <[email protected]>",
"spirobel <[email protected]>",
"Artur Fijał <[email protected]>",
"David Le Jolly <[email protected]>",
"Johannes Wilm <[email protected]>",
"Nick Gravelyn <[email protected]>",
"paosder <[email protected]>"
],
"devDependencies": {
"@babel/types": "^7.11.0",
"@cortex-js/prettier-config": "^1.0.0",
"@types/css-font-loading-module": "0.0.4",
"@types/jest": "^26.0.10",
"@types/node": "^14.6.2",
"@typescript-eslint/eslint-plugin": "^3.10.1",
"@typescript-eslint/parser": "^3.10.1",
"@typescript-eslint/typescript-estree": "^3.10.1",
"autoprefixer": "^9.8.6",
"check-node-version": "^4.0.3",
"cssnano": "^4.1.10",
"eslint": "^7.7.0",
"eslint-config-prettier": "latest",
"eslint-plugin-no-unsanitized": "^3.1.2",
"eslint-plugin-prettier": "^3.1.4",
"http-server": "^0.12.3",
"husky": "^4.2.5",
"jest": "^26.4.2",
"jest-silent-reporter": "^0.2.1",
"less": "^3.12.2",
"lint-staged": "^10.2.13",
"postcss-cli": "^7.1.1",
"prettier": "^2.1.1",
"rimraf": "^3.0.2",
"rollup": "^2.26.8",
"rollup-plugin-copy": "^3.3.0",
"rollup-plugin-eslint": "^7.0.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-postcss": "^3.1.6",
"rollup-plugin-terser": "^7.0.1",
"rollup-plugin-typescript2": "^0.27.2",
"ts-jest": "^26.3.0",
"typescript": "^4.0.2"
},
"dependencies": {},
"keywords": [
"math",
"editor",
"javascript",
"math-editing",
"latex",
"tex",
"mathjax",
"katex",
"mathquill"
]
}