-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
91 lines (91 loc) · 2.16 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
{
"name": "rollup-plugin-glob-import",
"version": "0.5.0",
"description": "A rollup plugin to use glob-star.",
"license": "MIT",
"repository": "kei-ito/rollup-plugin-glob-import",
"main": "lib/index.js",
"files": [
"lib"
],
"author": {
"name": "Kei Ito",
"email": "kei.itof@gmail.com",
"url": "https://github.com/kei-ito"
},
"keywords": [
"rollup",
"glob"
],
"engines": {
"node": ">=8"
},
"scripts": {
"sample": "rollup --config sample/rollup.config.js",
"lint": "eslint lib test",
"test": "tap test/*/test.js",
"version": "run-s version:changelog version:add",
"version:changelog": "npx @nlib/changelog --output CHANGELOG.md",
"version:add": "git add ."
},
"dependencies": {
"fast-glob": "3.3.2",
"rollup-pluginutils": "2.8.2"
},
"devDependencies": {
"@nlib/eslint-config": "3.19.6",
"@nlib/githooks": "0.2.0",
"@typescript-eslint/eslint-plugin": "5.62.0",
"@typescript-eslint/parser": "5.62.0",
"eslint": "8.57.0",
"lint-staged": "13.3.0",
"npm-run-all": "4.1.5",
"rollup": "3.29.4",
"tap": "16.3.10"
},
"eslintConfig": {
"extends": [
"@nlib/eslint-config"
],
"env": {
"node": true
},
"rules": {
"@nlib/no-globals": "off"
},
"ignorePatterns": [
"output",
"test/*/src"
],
"overrides": [
{
"files": [
"*.js"
],
"rules": {
"import/no-commonjs": "off",
"import/unambiguous": "off"
}
}
]
},
"lint-staged": {
"test/*/src/*.js": [
"eslint"
],
"test/*/*.js": [
"eslint"
],
"test/*.js": [
"eslint"
],
"lib/*.js": [
"eslint"
]
},
"renovate": {
"extends": [
"github>nlibjs/renovate-config"
]
}
}