-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 2.03 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 2.03 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
{
"name": "superset",
"version": "3.0.3",
"description": "A library that provides the missing Set methods such as map and filter.",
"main": "index.js",
"packageManager": "pnpm@10.28.0",
"engines": {
"node": ">= 20.0.0"
},
"pnpm": {
"overrides": {
"serialize-javascript": ">=7.0.5",
"diff": ">=8.0.3",
"flatted": ">=3.4.0",
"brace-expansion@^1": "~1.1.13",
"brace-expansion@^2": "~2.0.3",
"brace-expansion@^5": ">=5.0.5",
"yaml": ">=2.8.3",
"picomatch@^2": "~2.3.2",
"picomatch@^4": ">=4.0.4"
}
},
"devDependencies": {
"@stylistic/eslint-plugin": "^4.4.1",
"c8": "^10.1.3",
"chai": "^4.5.0",
"eslint": "^9.28.0",
"globals": "^16.1.0",
"mocha": "^11.5.0",
"remark-cli": "^12.0.1",
"remark-lint": "^10.0.1",
"remark-lint-code-block-style": "^4.0.1",
"remark-lint-emphasis-marker": "^4.0.1",
"remark-lint-fenced-code-marker": "^4.0.1",
"remark-lint-heading-style": "^4.0.1",
"remark-lint-list-item-indent": "^4.0.1",
"remark-lint-maximum-line-length": "^4.1.1",
"remark-lint-no-duplicate-headings": "^4.0.1",
"remark-lint-no-empty-sections": "^4.0.0",
"remark-lint-ordered-list-marker-style": "^4.0.1",
"remark-lint-rule-style": "^4.0.1",
"remark-lint-strong-marker": "^4.0.1",
"remark-lint-unordered-list-marker-style": "^4.0.1",
"remark-preset-lint-consistent": "^6.0.1",
"remark-preset-lint-recommended": "^7.0.1",
"remark-validate-links": "^13.1.0"
},
"scripts": {
"pretest": "eslint . && remark --frail --no-stdout .",
"test": "c8 mocha",
"test:ci": "c8 --reporter=lcov mocha"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/BYK/superset.git"
},
"keywords": [
"Set",
"ES6",
"ES2015",
"functional",
"map",
"filter",
"set"
],
"author": "Burak Yigit Kaya <ben@byk.im>",
"license": "MIT",
"bugs": {
"url": "https://github.com/BYK/superset/issues"
},
"homepage": "https://github.com/BYK/superset#readme"
}