-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
95 lines (95 loc) · 2.42 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
90
91
92
93
94
95
{
"name": "resolve-dependencies",
"version": "6.0.9",
"license": "MIT",
"main": "lib/resolve",
"files": [
"lib",
"!**/*.spec.js"
],
"repository": {
"type": "git",
"url": "https://github.com/nexe/resolve-dependencies.git"
},
"scripts": {
"build": "rm -rf lib && npm run lint && tsc",
"commitlint": "commitlint -f $(git rev-list --tags --max-count=1) -t $(git log --pretty=%H | head -1)",
"lint": "eslint \"src/**/*\" --fix",
"prepublishOnly": "npm run build && npm run commitlint",
"test": "jest --passWithNoTests",
"watch": "npm run build && concurrently -k \"npm:watch:typescript\" \"npm:watch:test\" -c blue,green",
"watch:test": "jest --watchAll",
"watch:typescript": "tsc -w"
},
"dependencies": {
"enhanced-resolve": "^5.12.0",
"fast-glob": "^3.2.12",
"meriyah": "^4.3.5"
},
"devDependencies": {
"@commitlint/cli": "^17.5.1",
"@commitlint/config-angular": "^17.4.4",
"@types/enhanced-resolve": "^3.0.7",
"@types/jest": "^29.5.0",
"@types/node": "^18.15.11",
"@typescript-eslint/eslint-plugin": "^5.57.0",
"@typescript-eslint/parser": "^5.57.0",
"concurrently": "^8.0.1",
"eslint": "^8.37.0",
"eslint-config-prettier": "~8.8.0",
"eslint-plugin-prettier": "^4.2.1",
"jest": "^29.5.0",
"prettier": "^2.8.7",
"tacks": "^1.3.0",
"typescript": "^5.0.3"
},
"jest": {
"testRegex": ".*?(\\.spec).js",
"watchPathIgnorePatterns": [
"lib/fixture*",
"\\.ts$"
]
},
"prettier": {
"parser": "typescript",
"semi": false,
"singleQuote": true,
"printWidth": 100
},
"eslintConfig": {
"parser": "@typescript-eslint/parser",
"plugins": [
"@typescript-eslint"
],
"extends": [
"plugin:@typescript-eslint/recommended",
"plugin:prettier/recommended"
],
"overrides": [
{
"files": [
"*.spec.ts"
],
"env": {
"jest": true
},
"rules": {
"@typescript-eslint/camelcase": 0
}
}
],
"rules": {
"@typescript-eslint/no-unused-vars": [
2,
{
"ignoreRestSiblings": true,
"varsIgnorePattern": "^_*"
}
],
"@typescript-eslint/no-var-requires": 0,
"@typescript-eslint/explicit-function-return-type": 0,
"@typescript-eslint/no-explicit-any": 0,
"@typescript-eslint/no-use-before-define": 0
}
}
}