-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 2.12 KB
/
package.json
File metadata and controls
83 lines (83 loc) · 2.12 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
73
74
75
76
77
78
79
80
81
82
83
{
"name": "@open3cl/preprocessing",
"version": "0.0.1",
"description": "A Javascript library to pre-process a DPE",
"main": "index.js",
"typings": "index.d.ts",
"author": "Open3Cl",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/Open3CL/preprocessor/issues"
},
"homepage": "https://github.com/Open3CL/preprocessor#readme",
"keywords": [
"dpe",
"pre-process",
"open3Cl"
],
"repository": {
"type": "git",
"url": "https://github.com/Open3CL/preprocessor.git"
},
"type": "module",
"private": false,
"publishConfig": {
"access": "public"
},
"scripts": {
"test": "vitest run",
"test:ci": "vitest run --coverage",
"qa:lint": "eslint .",
"qa:lint:fix": "npm run qa:lint -- --fix",
"qa:duplication": "jscpd",
"qa:prettier:check": "prettier --plugin-search-dir . --check",
"qa:prettier:format": "prettier --plugin-search-dir . --write .",
"release": "semantic-release",
"release:dry": "semantic-release --dry-run",
"prepare": "husky install",
"types:generate": "node scripts/generate-types.js"
},
"dependencies": {
"@open3cl/engine": "1.0.1",
"winston": "3.17.0"
},
"devDependencies": {
"@commitlint/cli": "19.3.0",
"@commitlint/config-conventional": "19.2.2",
"@commitlint/cz-commitlint": "19.2.0",
"@semantic-release/changelog": "6.0.3",
"@semantic-release/git": "10.0.1",
"@semantic-release/github": "10.1.3",
"@types/node": "20.14.12",
"@vitest/coverage-v8": "2.0.3",
"eslint": "8.57.0",
"eslint-config-prettier": "9.1.0",
"eslint-config-standard": "17.1.0",
"eslint-plugin-check-file": "2.8.0",
"eslint-plugin-import": "2.29.1",
"husky": "9.1.2",
"jscpd": "4.0.5",
"json-ts": "1.6.4",
"prettier": "3.4.2",
"pretty-quick": "4.0.0",
"semantic-release": "24.2.0",
"dioma": "0.4.6",
"vitest": "2.0.3"
},
"jscpd": {
"threshold": 0.1,
"reporters": [
"console",
"html"
],
"ignore": [
"**/*.spec.js"
],
"path": [
"src"
],
"output": "./duplicate",
"absolute": true,
"gitignore": true
}
}