-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 889 Bytes
/
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": "git-diff-node-modules",
"version": "1.0.1",
"license": "MIT",
"author": "ZauberNerd <[email protected]>",
"description": "`git diff-node-modules` to see a diff of the local modifications in your node_modules folder",
"keywords": [
"git",
"diff",
"node_modules",
"local",
"changes"
],
"engines": {
"node": ">=8.10.0"
},
"files": [
"bin.js"
],
"bin": "bin.js",
"scripts": {
"prepare": "yarn build",
"build": "tsc",
"watch": "tsc --watch",
"fmt": "prettier --write '*.ts'"
},
"prettier": {
"singleQuote": true
},
"dependencies": {
"fast-glob": "^2.2.3",
"find-up": "^3.0.0",
"fs-extra": "^7.0.1"
},
"devDependencies": {
"@types/find-up": "^2.1.1",
"@types/fs-extra": "^5.0.4",
"@types/node": "^10.12.5",
"prettier": "^1.15.2",
"typescript": "^3.1.6"
}
}