-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
87 lines (87 loc) · 2.23 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
{
"name": "@jzck/open3cl",
"version": "0.1.0",
"description": "Open Source 3CL-DPE engine",
"main": "index.js",
"directories": {
"test": "test"
},
"type": "module",
"private": false,
"publishConfig": {
"access": "public"
},
"scripts": {
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js",
"test:benchmark": "node inspect test/run_benchmark.js",
"qa:lint": "eslint .",
"qa:lint:fix": "npm run qa:lint -- --fix",
"qa:duplication": "jscpd",
"qa:format": "prettier --plugin-search-dir . --write .",
"release": "semantic-release",
"release:dry": "semantic-release --dry-run",
"prepare": "husky install",
"assets:sync": "node scripts/synchronize_assets.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jzck/Open3CL.git"
},
"keywords": [
"dpe",
"3cl"
],
"dependencies": {
"@jest/globals": "^29.7.0",
"fast-xml-parser": "^4.5.0",
"lodash": "^4.17.21"
},
"devDependencies": {
"@commitlint/cli": "^19.2.1",
"@commitlint/config-conventional": "^19.1.0",
"@commitlint/cz-commitlint": "^19.2.0",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^10.0.2",
"@types/jest": "^29.5.12",
"@types/node": "^20.12.4",
"deep-object-diff": "^1.1.9",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-check-file": "^2.7.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-n": "^16.6.2",
"eslint-plugin-promise": "^6.1.1",
"husky": "^9.0.11",
"jest": "^29.7.0",
"jest-html-reporter": "^3.10.2",
"jscpd": "^3.5.10",
"prettier": "^3.2.5",
"pretty-quick": "^4.0.0",
"semantic-release": "^23.0.6",
"xlsx": "^0.18.5"
},
"author": "Jack Halford",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/jzck/Open3CL/issues"
},
"homepage": "https://github.com/jzck/Open3CL#readme",
"jscpd": {
"threshold": 0.1,
"reporters": [
"console",
"html"
],
"ignore": [
"**/*.spec.js"
],
"path": [
"src"
],
"output": "./duplicate",
"absolute": true,
"gitignore": true
}
}