forked from arnog/mathlive
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
132 lines (132 loc) · 4.07 KB
/
Copy pathpackage.json
File metadata and controls
132 lines (132 loc) · 4.07 KB
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.58.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.8",
"node": ">=12.0.0"
},
"browserslist": [
"> 1%",
"last 2 versions",
"maintained node versions",
"not dead"
],
"author": "Arno Gourdol <arno@arno.org>",
"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 <kchamplewski@gmail.com>",
"Fabian Grewing <Fabian.Heimbuerger@gmail.com>",
"Paul Masson <paulmasson@comcast.net>",
"Soroush Javadi <soroush.javadi@gmail.com>",
"Thomas Schell <thom.schell@gmail.com>",
"leerobert <lee.robert.138@gmail.com>",
"spirobel <spirobel@protonmail.com>",
"Artur Fijał <afijal@soldevelo.com>",
"David Le Jolly <david.lejolly@gmail.com>",
"Johannes Wilm <johanneswilm@gmail.com>",
"Nick Gravelyn <nick@gravelyn.com>",
"paosder <denjaraos@gmail.com>"
],
"devDependencies": {
"@babel/types": "^7.11.5",
"@cortex-js/prettier-config": "^1.0.0",
"@rollup/plugin-node-resolve": "^9.0.0",
"@types/css-font-loading-module": "0.0.4",
"@types/jest": "^26.0.14",
"@types/node": "^14.11.8",
"@typescript-eslint/eslint-plugin": "^4.4.1",
"@typescript-eslint/parser": "^4.4.1",
"@typescript-eslint/typescript-estree": "^4.4.1",
"autoprefixer": "^9.8.6",
"check-node-version": "^4.0.3",
"cssnano": "^4.1.10",
"eslint": "^7.11.0",
"eslint-config-prettier": "^6.12.0",
"eslint-plugin-no-unsanitized": "^3.1.4",
"eslint-plugin-prettier": "^3.1.4",
"http-server": "^0.12.3",
"husky": "^4.3.0",
"jest": "^26.5.3",
"jest-silent-reporter": "^0.2.1",
"less": "^3.12.2",
"lint-staged": "^10.4.0",
"postcss-cli": "^7.1.2",
"prettier": "^2.1.2",
"rimraf": "^3.0.2",
"rollup": "^2.30.0",
"rollup-plugin-copy": "^3.3.0",
"rollup-plugin-eslint": "^7.0.0",
"rollup-plugin-postcss": "^3.1.8",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript2": "^0.27.3",
"ts-jest": "^26.4.1",
"typescript": "^4.0.3"
},
"dependencies": {},
"keywords": [
"math",
"editor",
"javascript",
"math-editing",
"latex",
"tex",
"mathjax",
"katex",
"mathquill"
]
}