-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.27 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
{
"name": "nodesecure-issue-tracker",
"version": "1.0.0",
"description": "Track NodeSecure organization issues",
"main": "./dist/index.js",
"exports": "./dist/index.js",
"types": "./dist/index.d.ts",
"type": "module",
"scripts": {
"build": "tsc",
"prepublishOnly": "npm run build",
"test": "mocha --parallel",
"coverage": "c8 -r html npm test",
"lint": "cross-env eslint src/*.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/fabnguess/nodesecure-issue-tracker.git"
},
"keywords": [
"ossf",
"openssf",
"scorecard",
"security",
"opensource",
"nodeSecure",
"track",
"issues",
"github"
],
"author": "N'GUESSAN Kouadio Fabrice <fabnguess@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/fabnguess/nodesecure-issue-tracker/issues"
},
"homepage": "https://github.com/fabnguess/nodesecure-issue-tracker#readme",
"devDependencies": {
"@nodesecure/eslint-config": "^1.5.0",
"@types/chai": "^4.3.3",
"@types/mocha": "^10.0.1",
"@types/node": "^18.7.16",
"c8": "^7.12.0",
"chai": "^4.3.6",
"eslint": "^8.23.0",
"mocha": "^10.0.0",
"ts-node": "^10.9.1",
"typescript": "^5.0.3"
},
"dependencies": {
"dotenv": "^16.0.3"
}
}