mirror of
https://github.com/Combodo/iTop.git
synced 2026-02-13 15:34:12 +01:00
Current file header is : /*! showdown v 2.0.0-alpha1 - 25-09-2018 */ Official 2.0.0-alpha doesn't match neither on content nor date :( Considering date we would be at 1.8.7, but it is also quite different (and has vulnerabilities) In consequence switching to 2.0.0.
64 lines
1.2 KiB
JSON
64 lines
1.2 KiB
JSON
{
|
|
"name": "escalade",
|
|
"version": "3.1.2",
|
|
"repository": "lukeed/escalade",
|
|
"description": "A tiny (183B to 210B) and fast utility to ascend parent directories",
|
|
"module": "dist/index.mjs",
|
|
"main": "dist/index.js",
|
|
"types": "index.d.ts",
|
|
"license": "MIT",
|
|
"author": {
|
|
"name": "Luke Edwards",
|
|
"email": "luke.edwards05@gmail.com",
|
|
"url": "https://lukeed.com"
|
|
},
|
|
"exports": {
|
|
".": [
|
|
{
|
|
"types": "./index.d.ts",
|
|
"import": "./dist/index.mjs",
|
|
"require": "./dist/index.js"
|
|
},
|
|
"./dist/index.js"
|
|
],
|
|
"./sync": [
|
|
{
|
|
"types": "./sync/index.d.ts",
|
|
"import": "./sync/index.mjs",
|
|
"require": "./sync/index.js"
|
|
},
|
|
"./sync/index.js"
|
|
]
|
|
},
|
|
"files": [
|
|
"*.d.ts",
|
|
"dist",
|
|
"sync"
|
|
],
|
|
"modes": {
|
|
"sync": "src/sync.js",
|
|
"default": "src/async.js"
|
|
},
|
|
"engines": {
|
|
"node": ">=6"
|
|
},
|
|
"scripts": {
|
|
"build": "bundt",
|
|
"pretest": "npm run build",
|
|
"test": "uvu -r esm test -i fixtures"
|
|
},
|
|
"keywords": [
|
|
"find",
|
|
"parent",
|
|
"parents",
|
|
"directory",
|
|
"search",
|
|
"walk"
|
|
],
|
|
"devDependencies": {
|
|
"bundt": "1.1.1",
|
|
"esm": "3.2.25",
|
|
"uvu": "0.3.3"
|
|
}
|
|
}
|