-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.11 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.11 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
{
"name": "licensepulse",
"version": "1.0.0",
"description": "Monitor GitHub repositories for license changes and get alerted before it becomes your problem",
"main": "src/cli.js",
"bin": {
"licensepulse": "./bin/licensepulse.js"
},
"scripts": {
"start": "node src/cli.js",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage"
},
"keywords": [
"license",
"monitoring",
"github",
"compliance",
"spdx",
"open-source",
"license-scanner",
"oss",
"watchdog"
],
"author": {
"name": "Diego Sant",
"url": "https://github.com/diegosantdev"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/diegosantdev/licensepulse.git"
},
"bugs": {
"url": "https://github.com/diegosantdev/licensepulse/issues"
},
"homepage": "https://github.com/diegosantdev/licensepulse#readme",
"engines": {
"node": ">=18"
},
"dependencies": {
"axios": "^1.6.0",
"chalk": "^4.1.2",
"commander": "^11.1.0",
"dotenv": "^16.3.1"
},
"devDependencies": {
"jest": "^29.7.0"
}
}