-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
39 lines (39 loc) · 1022 Bytes
/
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
{
"name": "tex-to-unicode",
"private": true,
"description": "",
"license": "MIT",
"repository": "golopot/tex-to-unicode",
"author": {
"name": "golopot",
"email": "[email protected]"
},
"scripts": {
"dev": "cd extension && webpack -w",
"pack-extension": "cd extension && webpack && cd dist && zip -rFS ../dist.zip *",
"pack-docs": "webpack -c build/webpack.configs.docs.js",
"prettier": "prettier --check .",
"lint": "eslint .",
"tsc": "tsc",
"test": "jest --coverage",
"ci": "npm run prettier && npm run lint && npm run tsc && npm run test"
},
"dependencies": {
"bread-n-butter": "^0.6.0"
},
"devDependencies": {
"@types/chrome": "^0.0.176",
"codecov": "^3.7.1",
"copy-webpack-plugin": "^10.2.0",
"eslint": "^8.6.0",
"jest": "^27.5.1",
"prettier": "^2.6.2",
"typescript": "^4.5.4",
"webpack": "^5.66.0",
"webpack-cli": "^4.9.1",
"webpack-prettier-plugin": "^1.0.3"
},
"engines": {
"node": ">=14.5.0"
}
}