-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.11 KB
/
package.json
File metadata and controls
46 lines (46 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
{
"name": "npm-with-diff",
"version": "0.2.1",
"description": "Wrapper script around 'npm'. Use it instead of 'npm' to get a readable diff of the dependency trees from before and after the execution of an npm command.",
"author": "Marcel Wendler (https://github.com/UniquePanda)",
"license": "MIT",
"main": "lib/index.js",
"types": "lib/index.d.js",
"bin": {
"npm-with-diff": "./bin/npm-with-diff.js"
},
"scripts": {
"test": "jest --config jest.config.json",
"build": "tsc"
},
"files": [
"lib/**/*"
],
"repository": {
"type": "git",
"url": "git+https://github.com/UniquePanda/npm-with-diff.git"
},
"bugs": {
"url": "https://github.com/UniquePanda/npm-with-diff/issues"
},
"homepage": "https://github.com/UniquePanda/npm-with-diff#readme",
"keywords": [
"npm",
"command",
"run",
"update",
"install",
"dependency",
"dependencies",
"diff",
"difference",
"package"
],
"devDependencies": {
"@types/jest": "^29.2.6",
"@types/node": "^18.11.18",
"jest": "^29.3.1",
"ts-jest": "^29.0.5",
"typescript": "^4.9.4"
}
}