forked from cucumber/cucumber-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
dependency-lint.yml
60 lines (57 loc) · 1.98 KB
/
dependency-lint.yml
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
# See https://github.com/charlierudolph/dependency-lint/blob/v4.2.0/docs/configuration.md
# for a detailed explanation of the options
executedModules:
npmScripts:
dev:
- build
- coverage
- lint
- publish
- test
- version
shellScripts:
dev:
- test
ignore: []
root: 'scripts/*.sh'
ignoreErrors:
missing: []
shouldBeDependency: []
shouldBeDevDependency: []
unused:
- '@cucumber/compatibility-kit' # files dynamically loaded in cck test, not require'd
- '@typescript-eslint/eslint-plugin' # peer dependency of standard-with-typescript
- '@typescript-eslint/parser' # peer dependency of @typescript-eslint/eslint-plugin
- '@types/*' # type definitions
- coffeescript # features/compiler.feature
- coveralls # .travis.yml
- eslint-config-prettier # .eslintrc.yml - extends - prettier
- eslint-config-standard-with-typescript # .eslintrc.yml - extends - standard-with-typescript
- eslint-plugin-import # peer dependency of eslint-config-standard-with-typescript
- eslint-plugin-node # peer dependency of eslint-config-standard-with-typescript
- eslint-plugin-prettier # .eslintrc.yml - extends - prettier
- eslint-plugin-promise # peer dependency of eslint-config-standard-with-typescript
- eslint-plugin-standard # peer dependency of eslint-config-standard-with-typescript
- prettier # peer dependency of eslint-plugin-prettier
- ts-node # .mocharc.yml / cucumber.js
- tsify # package.json - scripts - build-browser-example, build-release
requiredModules:
files:
dev:
- '{compatibility,features,scripts,test}/**/*'
- '**/*_spec.ts'
- 'example/index.ts'
- '**/test_helpers.ts'
ignore:
- coverage/**/*
- 'dist/**/*'
- 'lib/**/*'
- 'node_modules/**/*'
- 'tmp/**/*'
root: '**/*.{js,ts}'
stripLoaders: false
transpilers:
- extension: .ts
fnName: transpileModule
module: typescript
resultKey: outputText