-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 1.46 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
{
"name": "jscpd-gitlab-reporter",
"version": "1.0.0",
"private": false,
"description": "Reporter for jscpd. Generate a report in CodeClimate format for use in GitLab Code Quality Reports.",
"keywords": [
"jscpd",
"cpd",
"reporter",
"jscpd-reporter",
"gitlab",
"codeclimate"
],
"author": "Mike Heyns <[email protected]>",
"homepage": "https://github.com/benaroo/jscpd-gitlab-reporter#readme",
"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",
"typecheck": "tsc --noEmit",
"cleanup": "rimraf ./dist"
},
"publishConfig": {
"access": "public"
},
"directories": {
"src": "src",
"test": "__tests__"
},
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/beanaroo/jscpd-gitlab-reporter.git"
},
"bugs": {
"url": "https://github.com/beanaroo/jscpd-gitlab-reporter/issues"
},
"dependencies": {
"colors": "^1.4.0",
"fs-extra": "^11.2.0"
},
"devDependencies": {
"@jscpd/core": "^4.0.1",
"@jscpd/finder": "^4.0.1",
"@tsconfig/node20": "^20.1.4",
"@types/fs-extra": "^11.0.4",
"@types/node": "^22.2.0",
"tsup": "^8.2.4",
"typescript": "^5.5.4"
}
}