-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.37 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.37 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
52
53
54
55
56
57
58
59
60
61
{
"author": "Guy Ellis <wildfiction@gmail.com>",
"bin": {
"packcomp": "bin/packcomp.js"
},
"bugs": {
"url": "https://github.com/guyellis/packcomp/issues"
},
"dependencies": {
"console.table": "0.10.0",
"debug": "4.3.7",
"lodash": "4.17.23",
"minimist": "1.2.8",
"node-fetch": "2.7.0"
},
"description": "Compare Dependencies in two or more package.json files",
"devDependencies": {
"eslint": "8.57.0",
"eslint-config-airbnb-base": "15.0.0",
"eslint-plugin-import": "2.30.0",
"eslint-plugin-jest": "28.8.3",
"jest": "29.7.0",
"pre-commit": "1.2.2"
},
"engines": {
"node": ">=8",
"npm": ">=5"
},
"homepage": "https://github.com/guyellis/packcomp#readme",
"keywords": [
"package.json",
"difference",
"comparison",
"diff"
],
"license": "MIT",
"main": "./bin/packcomp.js",
"name": "packcomp",
"pre-commit": {
"colors": true,
"run": [
"test"
],
"silent": false
},
"public": true,
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/guyellis/packcomp.git"
},
"scripts": {
"coverage": "jest --coverage",
"lint": "eslint --ext .js . --max-warnings 0",
"lintfix": "eslint --ext .js . --fix",
"test": "npm run lint && npm run coverage"
},
"version": "1.5.0"
}