-
Notifications
You must be signed in to change notification settings - Fork 47
Expand file tree
/
Copy pathpackage.json
More file actions
107 lines (107 loc) · 2.29 KB
/
package.json
File metadata and controls
107 lines (107 loc) · 2.29 KB
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
96
97
98
99
100
101
102
103
104
105
106
107
{
"name": "filing-cabinet",
"version": "5.2.0",
"description": "Find files based on partial paths",
"main": "index.js",
"files": [
"bin/cli.js",
"index.js"
],
"bin": {
"filing-cabinet": "bin/cli.js"
},
"scripts": {
"lint": "xo",
"fix": "xo --fix",
"mocha": "mocha",
"test": "npm run lint && npm run mocha",
"test:ci": "c8 npm run mocha"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dependents/node-filing-cabinet.git"
},
"keywords": [
"lookup",
"es6",
"amd",
"commonjs",
"sass",
"less",
"stylus",
"svelte",
"vue",
"partial",
"resolution",
"paths"
],
"author": "Joel Kemp <joel@mrjoelkemp.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/dependents/node-filing-cabinet/issues"
},
"homepage": "https://github.com/dependents/node-filing-cabinet",
"engines": {
"node": ">=18"
},
"dependencies": {
"app-module-path": "^2.2.0",
"commander": "^12.1.0",
"enhanced-resolve": "^5.20.0",
"module-definition": "^6.0.1",
"module-lookup-amd": "^9.1.1",
"resolve": "^1.22.11",
"resolve-dependency-path": "^4.0.1",
"sass-lookup": "^6.1.0",
"stylus-lookup": "^6.1.0",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.9.3"
},
"devDependencies": {
"c8": "^10.1.3",
"mocha": "^11.7.5",
"sinon": "^19.0.5",
"xo": "^0.60.0"
},
"xo": {
"space": true,
"ignores": [
"test/fixtures/*"
],
"rules": {
"arrow-body-style": "off",
"capitalized-comments": "off",
"comma-dangle": [
"error",
"never"
],
"curly": [
"error",
"multi-line"
],
"max-nested-callbacks": [
"error",
6
],
"operator-linebreak": [
"error",
"after"
],
"object-curly-spacing": [
"error",
"always"
],
"prefer-template": "error",
"space-before-function-paren": [
"error",
"never"
],
"unicorn/no-anonymous-default-export": "off",
"unicorn/prefer-module": "off",
"unicorn/prefer-node-protocol": "off",
"unicorn/prefer-string-slice": "off",
"unicorn/prefer-top-level-await": "off",
"unicorn/prevent-abbreviations": "off"
}
}
}