-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
42 lines (42 loc) · 1.08 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
{
"name": "@sephsekla/npm-package-diff",
"version": "0.3.0",
"description": "An npm command to track changes to npm packages against a git branch.",
"license": "MIT",
"author": "Joe Bailey-Roberts",
"homepage": "https://github.com/Sephsekla/npm-package-diff#readme",
"bugs": {
"url": "https://github.com/Sephsekla/npm-package-diff/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/Sephsekla/npm-package-diff.git"
},
"main": "command.js",
"engines": {
"node": ">=16"
},
"scripts": {
"build": "tsc",
"watch": "tsc --watch command.ts",
"config": "tsc --showConfig",
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "eslint *.ts"
},
"bin": {
"package-diff": "./command.js"
},
"keywords": [
"diff",
"packages"
],
"devDependencies": {
"@tsconfig/esm": "^1.0.3",
"@tsconfig/node-lts": "^18.12.2",
"@types/node": "^20.3.1",
"@typescript-eslint/eslint-plugin": "^5.60.0",
"@typescript-eslint/parser": "^5.60.0",
"eslint": "^7.32.0",
"typescript": "^5.1.3"
}
}