-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.35 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.35 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
{
"name": "@dashlog/core",
"version": "2.2.0",
"description": "Fetch stats and data of Github repositories",
"type": "module",
"exports": "./dist/index.js",
"types": "./dist/index.d.ts",
"scripts": {
"build": "tsc",
"prepublishOnly": "npm run build",
"test": "node --test ./test/**/*.spec.ts",
"coverage": "c8 --all -r html npm test",
"lint": "eslint src test"
},
"publishConfig": {
"registry": "https://registry.npmjs.org",
"access": "public",
"provenance": true
},
"repository": {
"type": "git",
"url": "git+https://github.com/dashlog/core.git"
},
"keywords": [],
"files": [
"dist"
],
"author": "GENTILHOMME Thomas <gentilhomme.thomas@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/dashlog/core/issues"
},
"homepage": "https://github.com/dashlog/core#readme",
"devDependencies": {
"@openally/config.eslint": "^2.2.0",
"@openally/config.typescript": "^1.2.1",
"@types/node": "^25.0.3",
"c8": "^10.1.2"
},
"dependencies": {
"@dashlog/fetch-github-repositories": "^3.0.2",
"@nodesecure/npm-registry-sdk": "^4.4.0",
"@nodesecure/npm-types": "^1.3.0",
"@nodesecure/ossf-scorecard-sdk": "^3.2.1",
"@nodesecure/scanner": "^8.2.0",
"@octokit/types": "^16.0.0",
"@openally/httpie": "1.0.0",
"@openally/mutex": "^2.0.0"
}
}