-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.39 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.39 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": "diff-package-lock",
"version": "1.4.1",
"description": "Easier to read package-lock diff",
"main": "dist/index.js",
"repository": "github:adiktofsugar/diff-package-lock",
"bin": {
"diff-package-lock": "dist/index.js"
},
"files": [
"dist"
],
"engines": {
"node": ">= 8.6.0"
},
"scripts": {
"watch": "concurrently \"npm:build -- -w\" \"npm:test:js -- --watch\" \"npm:lint -- -w\"",
"build": "tsc -p src/tsconfig.json",
"test": "TZ=America/Los_Angeles tsx --test",
"lint": "biome check src scripts",
"fix": "npm run lint -- --fix",
"release": "tsx ./scripts/release.mts",
"setup-hooks": "git config core.hooksPath .githooks"
},
"keywords": [],
"author": "Sean McCollum <anincrediblyshortname@gmail.com>",
"license": "ISC",
"dependencies": {
"minimist": "^1.2.6"
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@commitlint/cli": "^19.7.1",
"@commitlint/config-conventional": "^19.7.1",
"@types/minimist": "^1.2.5",
"@types/node": "^22.14.0",
"@types/node8": "npm:@types/node@^8.10.66",
"@types/semver": "^7.7.0",
"@types/tmp": "^0.2.6",
"concurrently": "^9.1.2",
"dedent": "^1.5.3",
"expect": "^29.7.0",
"prettier": "^3.5.1",
"semver": "^7.7.1",
"strip-ansi": "^7.1.0",
"tmp": "^0.2.3",
"tsx": "^4.19.3",
"typescript": "^5.8.2",
"uuid": "^11.1.0"
}
}