-
-
Notifications
You must be signed in to change notification settings - Fork 246
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 1.61 KB
/
Copy pathpackage.json
File metadata and controls
71 lines (71 loc) · 1.61 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
{
"name": "@jscpd/html-reporter",
"version": "4.2.5",
"description": "html reporter for jscpd",
"keywords": [
"jscpd",
"cpd",
"reporter",
"jscpd-reporter"
],
"author": "Andrey Kucherenko <kucherenko.andrey@gmail.com>",
"homepage": "https://jscpd.dev",
"license": "MIT",
"main": "dist/index.js",
"module": "dist/index.mjs",
"typings": "dist/index.d.mts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.js"
},
"./README.md": "./README.md"
},
"scripts": {
"build": "tsup-node --dts",
"postbuild": "ncp ./src/templates ./dist/templates",
"dev": "nodemon",
"test:dev": "vitest",
"typecheck": "tsc",
"cleanup": "rimraf ./dist .turbo"
},
"directories": {
"src": "src",
"test": "__tests__"
},
"files": [
"dist",
"public"
],
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kucherenko/jscpd.git"
},
"bugs": {
"url": "https://github.com/kucherenko/jscpd/issues"
},
"dependencies": {
"colors": "1.4.0",
"fs-extra": "^11.3.6",
"pug": "^3.0.4"
},
"devDependencies": {
"@jscpd/finder": "workspace:*",
"@jscpd/core": "workspace:*",
"@jscpd/tsconfig": "workspace:*",
"@types/fs-extra": "^11.0.4",
"@types/node": "^26.0.1",
"@types/pug": "^2.0.10",
"autoprefixer": "^10.5.2",
"ncp": "^2.0.0",
"nodemon": "^3.1.14",
"tsup": "^8.5.1",
"typescript": "^5.5.4",
"vitest": "^4.1.10"
},
"gitHead": "87a118f80343288c0099a4e3e47ccd875476bf6c"
}