-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
67 lines (67 loc) · 1.72 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
{
"name": "structlint",
"description": "Lint your project structure against architecture rules",
"keywords": [
"structure linter",
"architecture linter",
"lint folders",
"eslint for structure",
"directory",
"structure",
"linter",
"linting",
"folder",
"directories",
"folders"
],
"repository": "desfero/structlint",
"bin": "./bin/structlint.js",
"version": "1.0.0-beta.0",
"main": "index.js",
"license": "MIT",
"author": "Pawel Lula (desfero)",
"scripts": {
"tsc": "tsc --noEmit",
"test": "jest",
"lint": "yarn format && cd ./src && structlint",
"format": "prettier --check \"**/*.{ts,tsx,js,json,md,gql}\"",
"format:fix": "prettier --write \"**/*.{ts,tsx,js,json,md,gql}\""
},
"dependencies": {
"@babel/parser": "^7.7.7",
"@babel/traverse": "^7.7.4",
"chalk": "^3.0.0",
"commander": "^5.1.0",
"cosmiconfig": "^6.0.0",
"debug": "^4.1.1",
"dedent": "^0.7.0",
"globby": "^10.0.1",
"linguist-languages": "^7.7.0",
"lodash": "^4.17.15",
"micromatch": "^4.0.2",
"ts-node": "^8.5.4",
"tslib": "^1.10.0",
"yup": "^0.28.0"
},
"devDependencies": {
"@babel/core": "^7.7.7",
"@babel/plugin-transform-modules-commonjs": "^7.7.5",
"@babel/preset-env": "^7.7.7",
"@babel/preset-typescript": "^7.7.7",
"@types/babel__traverse": "^7.0.8",
"@types/debug": "^4.1.5",
"@types/dedent": "^0.7.0",
"@types/lodash": "^4.14.149",
"@types/micromatch": "^4.0.1",
"@types/node": "^13.1.1",
"@types/yup": "^0.26.27",
"babel-jest": "^24.9.0",
"jest": "^24.9.0",
"prettier": "^1.19.1",
"structlint": "^0.3.1",
"typescript": "^3.7.4"
},
"engines": {
"node": ">=8"
}
}