-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
47 lines (47 loc) · 1.32 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
{
"name": "tex-linebreak",
"version": "0.7.1",
"main": "dist/lib.js",
"types": "dist/types/src/index.d.ts",
"license": "MIT",
"author": {
"name": "Robert Knight",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "https://github.com/robertknight/tex-linebreak.git"
},
"devDependencies": {
"@types/chai": "^4.3.1",
"@types/mocha": "^9.1.1",
"@types/node": "^20.10.1",
"chai": "^4.3.6",
"hyphenation.en-us": "^0.2.1",
"hypher": "^0.2.5",
"karma": "^6.4.0",
"karma-chrome-launcher": "^3.1.1",
"karma-mocha": "^2.0.1",
"mocha": "^10.0.0",
"prettier": "^2.7.1",
"puppeteer": "^22.15.0",
"ts-loader": "^9.3.1",
"typescript": "^5.3.2",
"webpack": "^5.76.0",
"webpack-cli": "^4.10.0",
"xorshift": "^1.2.0"
},
"files": [
"dist/**"
],
"scripts": {
"build-prod": "webpack --mode production && yarn types",
"build-dev": "webpack --mode development",
"format": "prettier --write src/*.ts src/**/*.ts test/**/*.ts",
"prepublish": "yarn build-prod",
"types": "tsc --declaration --emitDeclarationOnly --outDir dist/types",
"test": "webpack --mode development --config webpack-test.config.js && karma start --single-run",
"watch": "webpack --watch --mode development"
},
"dependencies": {}
}