forked from smikula/good-fences
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
33 lines (33 loc) · 908 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
{
"name": "good-fences",
"version": "0.9.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": {
"commander": "^2.11.0",
"minimatch": "^3.0.4",
"typescript": "^3.5.3"
},
"devDependencies": {
"@types/commander": "^2.11.0",
"@types/jest": "^21.1.2",
"@types/node": "^12.7.8",
"jest": "^24.8.0"
},
"repository": {
"type": "git",
"url": "https://github.com/smikula/good-fences.git"
},
"license": "MIT"
}