-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
45 lines (45 loc) · 1.11 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
{
"version": "0.0.0-semantically-released",
"name": "install-group",
"description": "Dependency grouping for npm-install",
"author": "Ahmad Nassri <[email protected]> (https://www.ahmadnassri.com)",
"homepage": "https://github.com/ahmadnassri/node-install-group",
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/ahmadnassri/node-install-group.git"
},
"bugs": {
"url": "https://github.com/ahmadnassri/node-install-group/issues"
},
"funding": {
"type": "individual",
"url": "https://github.com/sponsors/ahmadnassri"
},
"license": "MIT",
"keywords": [
"npm",
"install",
"group"
],
"engines": {
"node": ">=14"
},
"files": [
"lib",
"index.js"
],
"main": "lib/scan.js",
"bin": {
"install-group": "index.js"
},
"scripts": {
"start": "node src/index.js",
"test": "npm run test:cli -- test",
"test:cli": "node --experimental-test-coverage --test",
"test:watch": "npm run test:cli -- --watch test",
"test:ci": "npm run test:cli -- test"
},
"devDependencies": {
"node-test-github-reporter": "^1.1.3"
}
}