-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.44 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.44 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": "@foo-software/node-modules-compare",
"description": "A tool to compare imported `node_modules` existence and size from one build to another",
"version": "0.1.1",
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/foo-software/node-modules-compare.git"
},
"bin": {
"node-modules-compare": "dist/bin/nodeModulesCompare.js"
},
"scripts": {
"node-modules-compare": "ts-node-esm --experimental-specifier-resolution=node src/bin/nodeModulesCompare.ts",
"build": "tsc",
"lint": "eslint",
"prepublishOnly": "npm run build",
"prettier": "prettier --write '**/*.{ts,tsx}'",
"prepare": "husky install",
"test": "jest"
},
"lint-staged": {
"**/*.{ts,tsx}": [
"eslint",
"prettier --write"
]
},
"devDependencies": {
"@trivago/prettier-plugin-sort-imports": "^4.0.0",
"@types/jest": "^29.2.4",
"@types/node": "^18.11.17",
"@typescript-eslint/eslint-plugin": "^5.46.1",
"@typescript-eslint/parser": "^5.46.1",
"eslint": "^8.30.0",
"eslint-config-next": "^13.0.7",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-jest": "^27.1.7",
"husky": "^8.0.2",
"jest": "^29.3.1",
"lint-staged": "^13.1.0",
"prettier": "^2.8.1",
"ts-jest": "^29.0.3",
"ts-node": "^10.9.1",
"typescript": "^4.9.4"
},
"dependencies": {
"meow": "^11.0.0"
}
}