-
Notifications
You must be signed in to change notification settings - Fork 47
/
package.json
84 lines (84 loc) · 2.03 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"name": "barrelsby",
"version": "2.8.1",
"description": "Automatic TypeScript barrels for your entire code base",
"main": "index.js",
"scripts": {
"build": "tsc",
"clean": "rimraf bin/ && rimraf test/**/output/**",
"prettier:fix": "prettier --write \"src/**/*.ts\"",
"lint": "tslint --project tsconfig.json -t stylish",
"integration-test": "ts-node test/src.ts",
"test": "jest",
"synk": "SNYK_CONFIG_ORG='barrelsby'; snyk test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bencoveney/barrelsby.git"
},
"keywords": [
"TypeScript",
"Barrel",
"Module",
"Barrelsby"
],
"author": {
"name": "Ben Coveney",
"email": "[email protected]",
"url": "https://github.com/bencoveney"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/bencoveney/barrelsby/issues"
},
"homepage": "https://github.com/bencoveney/barrelsby#readme",
"dependencies": {
"@types/yargs": "^17.0.10",
"signale": "^1.4.0",
"yargs": "^17.4.1"
},
"devDependencies": {
"@types/fs-extra": "^11.0.1",
"@types/jest": "^27.0.2",
"@types/mock-fs": "^4.13.1",
"@types/node": "^18.0.0",
"@types/rimraf": "^3.0.2",
"@types/signale": "^1.4.2",
"@types/sinon": "^10.0.6",
"better-console": "^1.0.1",
"dir-compare": "^4.0.0",
"fs-extra": "^11.1.1",
"jest": "^27.4.4",
"mock-fs": "^5.1.2",
"prettier": "^3.0.2",
"rimraf": "^3.0.2",
"sinon": "^15.0.1",
"snyk": "^1.858.0",
"ts-jest": "^27.1.4",
"ts-node": "^10.7.0",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.18.0",
"typescript": "^4.5.3"
},
"bin": {
"barrelsby": "bin/cli.js"
},
"engine": {
"node": ">=0.10"
},
"contributors": [
{
"name": "Ben Coveney",
"email": "[email protected]",
"url": "https://github.com/bencoveney"
},
{
"name": "Noah",
"email": "[email protected]",
"url": "https://github.com/bitforger"
}
],
"engines": {
"node": ">=6.0.0"
}
}