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
118 lines (118 loc) · 3.3 KB
/
package.json
File metadata and controls
118 lines (118 loc) · 3.3 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
{
"name": "mathlive",
"version": "0.50.3",
"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",
"deploy": "bash ./scripts/deploy",
"deploy-ci": "bash ./scripts/deploy-ci",
"dist": "bash ./scripts/build.sh production",
"lint": "eslint --fix src/",
"preversion": "bash ./scripts/build.sh production",
"start": "bash ./scripts/build.sh watch",
"test": "bash ./scripts/test.sh",
"version": "bash ./scripts/version.sh"
},
"main": "./dist/mathlive.js",
"module": "./dist/mathlive.mjs",
"types": "./dist/mathlive.d.ts",
"files": [
"/dist"
],
"prettier": {
"singleQuote": true,
"trailingComma": "es5",
"endOfLine": "lf",
"tabWidth": 4,
"jsxSingleQuote": true
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"pre-push": "npm run dist"
}
},
"lint-staged": {
"/src/**/*.js": [
"eslint --fix",
"git add"
],
"/src/**/*.{js,css,json,less}": [
"prettier --write",
"git add"
],
"/*.md": [
"prettier --write",
"git add"
]
},
"engines": {
"npm": ">=6.14",
"node": ">=10.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)"
],
"devDependencies": {
"@cortex-js/prettier-config": "^1.0.0",
"@types/jest": "^25.2.1",
"@types/node": "^13.13.5",
"@typescript-eslint/eslint-plugin": "^2.31.0",
"@typescript-eslint/parser": "^2.31.0",
"autoprefixer": "^9.7.6",
"cssnano": "^4.1.10",
"eslint": "^7.0.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.3",
"http-server": "^0.12.3",
"husky": "^4.2.5",
"jest": "^26.0.1",
"less": "^3.11.1",
"lint-staged": "^10.2.2",
"postcss-cli": "^7.1.1",
"prettier": "^2.0.5",
"rimraf": "^3.0.2",
"rollup": "^2.8.2",
"rollup-plugin-copy": "^3.3.0",
"rollup-plugin-eslint": "^7.0.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-terser": "^5.3.0",
"rollup-plugin-typescript2": "^0.27.0",
"ts-jest": "^25.5.0",
"typescript": "^3.8.3"
},
"dependencies": {},
"keywords": [
"math",
"editor",
"javascript",
"math-editing",
"latex",
"tex",
"mathjax",
"katex",
"mathquill"
]
}