forked from smikula/good-fences
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 loc) · 967 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
{
"name": "good-fences",
"version": "0.5.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 <mikula@gmail.com>",
"dependencies": {
"commander": "^2.11.0",
"glob": "^7.1.2",
"minimatch": "^3.0.4",
"typescript": ">=2.4.0"
},
"devDependencies": {
"@types/commander": "^2.11.0",
"@types/glob": "^5.0.33",
"@types/jest": "^21.1.2",
"@types/node": "^7.0.4",
"jest": "^21.2.1"
},
"repository": {
"type": "git",
"url": "https://github.com/smikula/good-fences.git"
},
"license": "MIT"
}