-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.46 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.46 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
{
"name": "@pixdif/cli",
"version": "0.10.2",
"description": "Command-Line Interface of PixDif",
"type": "module",
"main": "dist",
"bin": {
"pixdif": "pixdif.js"
},
"scripts": {
"build": "tsc -p src",
"debug": "tsc -p src --incremental --sourceMap",
"test": "npm run lint && npm run jest",
"lint": "eslint .",
"jest": "cross-env NODE_OPTIONS=--experimental-vm-modules jest --coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/pixdif/cli.git"
},
"keywords": [
"compare",
"image",
"pdf"
],
"author": "Kazuichi Takashiro",
"license": "MIT",
"bugs": {
"url": "https://github.com/pixdif/cli/issues"
},
"homepage": "https://github.com/pixdif/cli#readme",
"files": [
"dist"
],
"dependencies": {
"@pixdif/core": "^0.10.1",
"@pixdif/html-reporter": "^0.10.2",
"@pixdif/model": "^0.10.1",
"chalk": "^5.3.0",
"glob": "^10.4.1",
"yargs": "^17.7.2"
},
"peerDependencies": {
"express": "^4.21.0"
},
"devDependencies": {
"@eslint/js": "^9.10.0",
"@pixdif/png-parser": "^0.10.0",
"@types/eslint__js": "^8.42.3",
"@types/express": "^4.17.21",
"@types/node": "^20.12.12",
"@types/supertest": "^6.0.2",
"@types/yargs": "^17.0.32",
"cross-env": "^7.0.3",
"eslint": "^9.10.0",
"jest": "^29.7.0",
"supertest": "^7.0.0",
"ts-jest": "^29.1.5",
"typescript": "^5.5.2",
"typescript-eslint": "^8.5.0"
}
}