-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
146 lines (102 loc) · 2.02 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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
{
"private": true,
"name": "@streetstrider/rootpath",
"version": "2.1.1",
"description": "pivot for path hierarchy",
"author": "Strider <strange.transistor@gmail.com>",
"license": "ISC",
"keywords":
[
"rootpath", "root", "fs",
"path", "resolve", "absolute", "relative", "contains",
"glob",
"flatten",
"flow", "typescript"
],
"homepage": "https://github.com/StreetStrider/rootpath",
"repository": { "url": "https://github.com/StreetStrider/rootpath.git", "type": "git" },
"bugs": { "url": "https://github.com/StreetStrider/rootpath/issues" },
"engines":
{
"node": ">=6"
},
"main": "rootpath.js",
"files":
[
"rootpath.d.ts",
"rootpath.js.flow"
],
"scripts":
{
"start":
"gulp",
"release/dev":
"gulp --once",
"release":
"gulp --final --to npm",
"st":
"eslint --ext ts rootpath.ts test/",
"flow":
"flow check",
"ts":
"tsc",
"dts":
"dtslint --expectOnly --localTs ./node_modules/typescript/lib test",
"t":
"npm run flow && npm run ts && npm run dts",
"unit":
"mocha -R dot --check-leaks --recursive release/dev/test/rootpath.js",
"test":
"npm run st && npm run t && npm run release/dev && npm run unit",
"cover":
"nyc -r lcov -r text -x release/dev/test/ npm run unit"
},
"dependencies":
{
"find-root":
"1.1.0",
"lodash.flattendeep":
"4.4.0",
"globjoin":
"0.1.4",
"def-prop":
"2.0.2"
},
"devDependencies":
{
"@types/node":
"20",
"@types/find-root":
"1",
"@types/globjoin":
"0.1",
"@types/lodash.flattendeep":
"4",
"@types/mocha":
"10",
"gulp":
"4",
"metalpipe":
"https://github.com/StrangeTransistor/metalpipe.git#6909d53089c861bdcfcf6aed6f57936322ee2712",
"rollup":
"4",
"eslint":
"8",
"js-outlander":
"StrangeTransistor/js-outlander#2.12.1",
"@typescript-eslint/parser":
"6",
"@typescript-eslint/eslint-plugin":
"6",
"flow-bin":
"0.208",
"typescript":
"5.3.3",
"dtslint":
"4",
"mocha":
"10",
"nyc":
"15"
}
}