-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
47 lines (47 loc) · 1.29 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
{
"name": "@dashlog/core",
"version": "2.1.0",
"description": "Fetch stats and data of Github repositories",
"type": "module",
"exports": "./dist/index.js",
"types": "./dist/index.d.ts",
"scripts": {
"build": "rimraf ./dist && tsc",
"prepublishOnly": "npm run build",
"test": "glob -c \"tsx --test\" \"./test/**/*.spec.ts\"",
"coverage": "c8 --all -r html npm test",
"lint": "eslint src test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dashlog/core.git"
},
"keywords": [],
"files": [
"dist"
],
"author": "GENTILHOMME Thomas <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/dashlog/core/issues"
},
"homepage": "https://github.com/dashlog/core#readme",
"devDependencies": {
"@openally/config.eslint": "^1.3.0",
"@types/node": "^22.0.0",
"c8": "^10.1.2",
"glob": "^11.0.0",
"rimraf": "^6.0.1",
"tsx": "^4.16.2"
},
"dependencies": {
"@dashlog/fetch-github-repositories": "^3.0.2",
"@myunisoft/httpie": "^5.0.0",
"@nodesecure/npm-registry-sdk": "^3.0.0",
"@nodesecure/npm-types": "^1.1.0",
"@nodesecure/ossf-scorecard-sdk": "^3.2.1",
"@nodesecure/scanner": "^6.0.1",
"@octokit/types": "^13.5.0",
"@openally/mutex": "^1.0.0"
}
}