Last change
on this file since fa375fe was 6a3a178, checked in by Ema <ema_spirova@…>, 3 years ago |
initial commit
|
-
Property mode
set to
100644
|
File size:
1.1 KB
|
Line | |
---|
1 | {
|
---|
2 | "name": "escalade",
|
---|
3 | "version": "3.1.1",
|
---|
4 | "repository": "lukeed/escalade",
|
---|
5 | "description": "A tiny (183B to 210B) and fast utility to ascend parent directories",
|
---|
6 | "module": "dist/index.mjs",
|
---|
7 | "main": "dist/index.js",
|
---|
8 | "types": "index.d.ts",
|
---|
9 | "license": "MIT",
|
---|
10 | "author": {
|
---|
11 | "name": "Luke Edwards",
|
---|
12 | "email": "luke.edwards05@gmail.com",
|
---|
13 | "url": "https://lukeed.com"
|
---|
14 | },
|
---|
15 | "exports": {
|
---|
16 | ".": [
|
---|
17 | {
|
---|
18 | "import": "./dist/index.mjs",
|
---|
19 | "require": "./dist/index.js"
|
---|
20 | },
|
---|
21 | "./dist/index.js"
|
---|
22 | ],
|
---|
23 | "./sync": [
|
---|
24 | {
|
---|
25 | "import": "./sync/index.mjs",
|
---|
26 | "require": "./sync/index.js"
|
---|
27 | },
|
---|
28 | "./sync/index.js"
|
---|
29 | ]
|
---|
30 | },
|
---|
31 | "files": [
|
---|
32 | "*.d.ts",
|
---|
33 | "dist",
|
---|
34 | "sync"
|
---|
35 | ],
|
---|
36 | "modes": {
|
---|
37 | "sync": "src/sync.js",
|
---|
38 | "default": "src/async.js"
|
---|
39 | },
|
---|
40 | "engines": {
|
---|
41 | "node": ">=6"
|
---|
42 | },
|
---|
43 | "scripts": {
|
---|
44 | "build": "bundt",
|
---|
45 | "pretest": "npm run build",
|
---|
46 | "test": "uvu -r esm test -i fixtures"
|
---|
47 | },
|
---|
48 | "keywords": [
|
---|
49 | "find",
|
---|
50 | "parent",
|
---|
51 | "parents",
|
---|
52 | "directory",
|
---|
53 | "search",
|
---|
54 | "walk"
|
---|
55 | ],
|
---|
56 | "devDependencies": {
|
---|
57 | "bundt": "1.1.1",
|
---|
58 | "esm": "3.2.25",
|
---|
59 | "uvu": "0.3.3"
|
---|
60 | }
|
---|
61 | }
|
---|
Note:
See
TracBrowser
for help on using the repository browser.