-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
89 lines (89 loc) · 3.13 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
85
86
87
88
89
{
"name": "@attilagyongyosi/path-linter",
"version": "2.1.5",
"description": "Linter for consistent directory and file naming.",
"main": "lib/index.js",
"author": "attilagyongyosi <[email protected]>",
"scripts": {
"clean": "rimraf ./lib",
"deps:update": "ncu -u",
"deps:libyear": "libyear",
"lint:ts": "eslint src/**/*.ts",
"lint:paths": "path-linter --colorize",
"lint": "run-p lint:*",
"build": "yarn clean && esbuild --bundle --platform=node --minify --outdir=lib --target=node10 src/index.ts && add-shebang",
"test-run:default": "yarn build && node lib/index.js",
"test-run": "yarn build && node lib/index.js --config sample-config.json",
"test:unit": "jest --runInBand && yarn test:badges:unit",
"test:integration": "yarn build && jest --runInBand -c jest.integration.config.js",
"test:watch": "jest --runInBand --watchAll",
"test": "yarn test:unit && yarn test:integration && yarn test-run",
"test:badges:unit": "yarn jest-coverage-badges --input generated/jest-coverage/unit/coverage-summary.json --output badges/coverage-unit",
"test:sanity": "yarn clean && yarn lint && yarn test"
},
"files": [
"CHANGELOG.md",
"README.md"
],
"publishConfig": {
"access": "public"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/attilagyongyosi/path-linter"
},
"bugs": {
"url": "https://github.com/attilagyongyosi/path-linter/issues"
},
"bin": {
"path-linter": "lib/index.js"
},
"keywords": [
"lint",
"linter",
"filenames",
"path",
"code style",
"convention"
],
"homepage": "https://github.com/attilagyongyosi/path-linter",
"private": false,
"devDependencies": {
"@attilagyongyosi/path-linter": "2.1.5",
"@attilagyongyosi/eslint-config": "0.4.0",
"@commitlint/cli": "11.0.0",
"@commitlint/config-conventional": "11.0.0",
"@types/node": "14.14.6",
"@types/jest": "26.0.15",
"@typescript-eslint/parser": "4.6.1",
"@typescript-eslint/eslint-plugin": "4.6.1",
"add-shebang": "0.1.0",
"esbuild": "0.8.5",
"eslint": "7.13.0",
"husky": "4.3.0",
"jest": "26.6.3",
"jest-coverage-badges": "1.1.2",
"libyear": "0.6.1",
"npm-check-updates": "9.2.4",
"npm-run-all": "4.1.5",
"rimraf": "3.0.2",
"semantic-release": "17.2.2",
"@semantic-release/git": "9.0.0",
"@semantic-release/commit-analyzer": "8.0.1",
"@semantic-release/release-notes-generator": "9.0.1",
"@semantic-release/changelog": "5.0.1",
"@semantic-release/npm": "7.0.6",
"@semantic-release/github": "7.1.1",
"ts-jest": "26.4.3",
"tslib": "2.0.3",
"typescript": "4.0.5"
},
"resolutions": {
"byte-size": "7.0.0",
"detect-indent": "6.0.0",
"detect-newline": "3.1.0",
"init-package-json": "2.0.1",
"sorted-union-stream": "3.0.1"
}
}