-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
66 lines (66 loc) · 1.38 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
{
"name": "nehan",
"version": "7.8.15",
"description": "Html layout engine for paged-media written in Typescript",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": "./dist/index.js",
"./package.json": "./package.json"
},
"scripts": {
"build": "make -f Makefile.public",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tategakibunko/nehan.git"
},
"keywords": [
"nehan",
"html",
"layout-engine",
"paged-media",
"typescript"
],
"jest": {
"testURL": "http://localhost/",
"setupFiles": [
"jest-canvas-mock"
],
"moduleFileExtensions": [
"ts",
"js"
],
"transform": {
"^.+\\.ts$": "ts-jest"
},
"globals": {
"ts-jest": {
"tsConfig": "./tsconfig.json",
"diagnostics": {
"warnOnly": true
}
}
},
"testMatch": [
"**/src/**/*.test.ts"
]
},
"author": "Watanabe Masaki",
"license": "MIT",
"devDependencies": {
"@types/jest": "^27.0.1",
"@types/node": "^20.5.9",
"@types/offscreencanvas": "^2019.6.3",
"ansi-regex": ">=6.0.1",
"jest": "^27.0.6",
"jest-canvas-mock": "^2.3.0",
"jest-cli": "^27.0.6",
"ts-jest": "^27.0.4",
"ts-loader": "^9.0.0",
"typescript": "^4.2.2",
"webpack": "^5.24.3",
"webpack-cli": "^5.1.4"
}
}