-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
95 lines (95 loc) · 2.45 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": "storybook-multilevel-sort",
"version": "2.0.0",
"description": "Applies specific sort order to more than two levels of chapters and stories in a storybook.",
"author": "Ferdinand Prantl <prantlf@gmail.com>",
"contributors": [
"Alessandro Rabitti <alessandro.rabitti@externals.adidas.com>",
"Cesar Costas <gatsbimantico@gmail.com>"
],
"license": "MIT",
"licenses": [
{
"type": "MIT",
"url": "https://github.com/prantlf/storybook-multilevel-sort/blob/master/LICENSE"
}
],
"homepage": "https://github.com/prantlf/storybook-multilevel-sort#readme",
"repository": {
"type": "git",
"url": "https://github.com/prantlf/storybook-multilevel-sort.git"
},
"bugs": {
"url": "https://github.com/prantlf/storybook-multilevel-sort/issues"
},
"engines": {
"node": ">=16"
},
"files": [
"lib"
],
"type": "module",
"main": "lib/index.cjs",
"module": "lib/index.js",
"types": "lib/index.d.ts",
"exports": {
"require": "./lib/index.cjs",
"import": "./lib/index.js",
"types": "./lib/index.d.ts"
},
"scripts": {
"prepare": "rollup -c",
"lint": "denolint && tsc --noEmit test/types.ts",
"check": "teru-esm test/index.js && teru-cjs test/index.cjs",
"cover": "c8 teru-esm test/index.js",
"test": "tsc --noEmit test/types.ts && teru-cjs test/index.cjs && c8 teru-esm test/index.js"
},
"storybook": {
"displayName": "Multi-level Sorting of Stories",
"icon": "https://raw.github.com/prantlf/storybook-multilevel-sort/master/docs/sort-128.png"
},
"c8": {
"100": true,
"reporter": [
"lcov",
"text"
]
},
"release": {
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/changelog",
"@semantic-release/npm",
[
"@semantic-release/github",
{
"failComment": false
}
],
"@semantic-release/git"
]
},
"devDependencies": {
"@node-rs/deno-lint": "^1.17.0",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"c8": "^7.13.0",
"rollup": "^3.21.7",
"storybook-multilevel-sort": "link:",
"tehanu": "^1.0.1",
"tehanu-repo-coco": "^1.0.0",
"tehanu-teru": "^1.0.0",
"typescript": "^5.0.4"
},
"keywords": [
"storybook-addons",
"storybook-addon",
"storybookjs",
"storybook",
"addons",
"addon",
"sort",
"multilevel"
]
}