-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.54 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.54 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
{
"name": "ieeexplore-search",
"version": "9.2.0",
"description": "IEEE results as workfiles",
"homepage": "https://github.com/fcastilloec/ieeeXploreSearching#readme",
"author": "Felipe Castillo",
"license": "GPL-3.0-or-later",
"repository": {
"type": "git",
"url": "git+https://github.com/fcastilloec/ieeeXploreSearching.git"
},
"keywords": [
"ieee",
"workfile"
],
"bugs": {
"url": "https://github.com/fcastilloec/ieeeXploreSearching/issues"
},
"type": "module",
"bin": {
"search": "./src/cli-search.mjs",
"logic": "./src/cli-logic.mjs",
"count": "./src/cli-count.mjs"
},
"scripts": {
"lint": "eslint . && cspell .",
"release": "commit-and-tag-version --sign",
"test": "node --experimental-vm-modules node_modules/.bin/jest",
"pkg": "pkg --compress GZip --public",
"prepare": "husky"
},
"dependencies": {
"axios": "^1.15.0",
"commander": "^14.0.3",
"dotenv": "^17.4.2",
"excel4node": "^1.8.2",
"locate-app": "^2.5.0",
"lodash": "^4.18.1",
"puppeteer-core": "^24.41.0",
"readline-sync": "^1.4.10"
},
"devDependencies": {
"@commitlint/cli": "^20.5.0",
"@commitlint/config-conventional": "^20.5.0",
"@eslint/js": "^10.0.1",
"@yao-pkg/pkg": "^6.15.0",
"commit-and-tag-version": "^12.7.1",
"eslint": "^10.2.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-import-x": "^4.16.2",
"eslint-plugin-n": "^17.24.0",
"globals": "^17.5.0",
"husky": "^9.1.7",
"jest": "^30.3.0",
"lint-staged": "^16.4.0"
}
}