-
Notifications
You must be signed in to change notification settings - Fork 18
/
package.json
49 lines (49 loc) · 1.35 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
43
44
45
46
47
48
49
{
"name": "good-fences",
"version": "1.2.0",
"description": "Code boundary management for TypeScript projects",
"main": "./lib/index.js",
"typings": "./lib/index.d.ts",
"bin": {
"good-fences": "./bin/good-fences",
"gf": "./bin/good-fences"
},
"scripts": {
"build": "tsc",
"test": "jest",
"sample": "npm run build && node ./lib/core/cli.js --rootDir ./sample"
},
"author": "Scott Mikula <[email protected]>",
"dependencies": {
"cli-progress": "^3.9.0",
"commander": "^7.2.0",
"fdir": "^5.1.0",
"minimatch": "^3.0.4",
"nodegit": "^0.28.0-alpha.18",
"picomatch": "^2.3.0",
"strip-json-comments": "^3.1.1",
"tsconfig-paths": "^3.10.1",
"typescript": "^4.0.3"
},
"devDependencies": {
"@types/cli-progress": "^3.9.2",
"@types/jest": "^26.0.15",
"@types/node": "^12.7.8",
"@types/nodegit": "^0.27.2",
"@types/picomatch": "^2.3.0",
"husky": "^4.3.8",
"jest": "^26.6.0",
"prettier": "^2.2.1",
"pretty-quick": "^3.1.0"
},
"repository": {
"type": "git",
"url": "https://github.com/smikula/good-fences.git"
},
"license": "MIT",
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
}
}