-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 2.06 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 2.06 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
{
"name": "page-processing-lib",
"version": "4.1.6",
"main": "dist/index.js",
"types": "dist/src/index.d.ts",
"repository": "git@github.com:Monsido/page-processing-lib.git",
"author": "Acquia Inc <engineering@acquia.com>",
"license": "GPL",
"private": true,
"engines": {
"node": ">=22"
},
"scripts": {
"build": "node build/build.mjs",
"serve": "node build/serve.mjs",
"lint": "eslint",
"test": "npm run test:u && npm run test:i",
"test:u": "jest --config=jest.unit.config.js",
"test:i": "jest --config=jest.integration.config.js",
"version": "npm run version"
},
"exports": {
".": {
"require": {
"types": "./dist/src/index.cjs.d.ts",
"default": "./dist/index.cjs.js"
},
"import": {
"types": "./dist/src/index.d.ts",
"default": "./dist/index.js"
}
},
"./esm": {
"types": "./dist/src/index.mjs.d.ts",
"default": "./dist/index.mjs"
}
},
"files": [
"dist/**/*.js",
"dist/**/*.mjs",
"dist/**/*.d.ts"
],
"jest": {
"projects": [
"<rootDir>/jest.unit.config.js",
"<rootDir>/jest.integration.config.js"
]
},
"devDependencies": {
"@stylistic/eslint-plugin": "^5.4.0",
"@types/jest": "^30.0.0",
"@types/jsdom": "^21.1.7",
"@types/node": "^24.5.2",
"@types/pixelmatch": "^5.2.6",
"@typescript-eslint/eslint-plugin": "^8.44.0",
"@typescript-eslint/parser": "^8.44.0",
"esbuild": "^0.25.10",
"eslint": "^9.36.0",
"jest": "^30.1.3",
"jest-environment-jsdom": "^30.1.2",
"jest-environment-node": "^30.1.2",
"pixelmatch": "^7.1.0",
"png-js": "^1.0.0",
"puppeteer": "^24.22.0",
"ts-jest": "^29.4.4",
"typescript": "^5.9.2",
"typescript-eslint": "^8.44.0"
},
"overrides": {
"glob": "^10.5.0"
}
}