-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
94 lines (94 loc) · 2.17 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
{
"name": "mathup",
"version": "1.0.0-rc.2",
"description": "Easy MathML authoring tool with a quick to write syntax",
"keywords": [
"mathml",
"markup",
"math",
"authoring"
],
"homepage": "https://runarberg.github.io/mathup/",
"bugs": "https://github.com/runarberg/mathup/issues",
"license": "MIT",
"author": "Rúnar Berg Baugsson Sigríðarson <runarberg@zoho.com>",
"type": "module",
"exports": "./src/index.js",
"bin": {
"mathup": "./bin/mathup.js"
},
"repository": {
"type": "git",
"url": "https://github.com/runarberg/mathup.git"
},
"scripts": {
"clean": "rm -fr coverage/ dist/",
"server": "python3 -m http.server",
"build": "rollup --config",
"check": "tsc --noEmit",
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"prepare": "npm run build",
"prettier": "prettier --ignore-path .ignore --write .",
"prettier:ci": "prettier --ignore-path .ignore --check .",
"test": "c8 ava",
"test:watch": "ava --watch"
},
"ava": {
"files": [
"test/**/*",
"src/**/*.test.*"
]
},
"babel": {
"plugins": [
"@babel/plugin-transform-runtime"
],
"presets": [
[
"@babel/preset-env",
{
"targets": {
"node": "18"
}
}
]
]
},
"c8": {
"reporter": [
"html",
"lcov",
"text",
"text-summary"
],
"include": [
"src/**/*.js",
"!src/**/*test.js"
]
},
"devDependencies": {
"@babel/cli": "^7.23.0",
"@babel/core": "^7.23.2",
"@babel/plugin-transform-runtime": "^7.23.2",
"@babel/preset-env": "^7.23.2",
"@babel/runtime": "^7.23.2",
"@eslint/js": "^8.53.0",
"@rollup/plugin-babel": "^6.0.4",
"@rollup/plugin-terser": "^0.4.4",
"ava": "^5.3.1",
"c8": "^8.0.1",
"eslint": "^8.53.0",
"eslint-plugin-ava": "^14.0.0",
"eslint-plugin-import": "^2.29.0",
"eslint-plugin-jsdoc": "^46.8.2",
"eslint-plugin-prettier": "^5.0.1",
"expect.js": "^0.3.1",
"globals": "^13.23.0",
"jsdom": "^22.1.0",
"prettier": "3.0.3",
"rollup": "^4.3.0",
"rollup-plugin-copy": "^3.5.0",
"typescript": "^5.2.2"
}
}