37 lines
774 B
JSON
37 lines
774 B
JSON
{
|
|
"name": "@11ty/dependency-tree-esm",
|
|
"version": "1.0.0",
|
|
"description": "Finds all JavaScript ES Module dependencies from a filename.",
|
|
"main": "main.js",
|
|
"scripts": {
|
|
"test": "npx ava"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/11ty/eleventy-dependency-tree.git"
|
|
},
|
|
"author": {
|
|
"name": "Zach Leatherman",
|
|
"email": "zach@zachleat.com",
|
|
"url": "https://zachleat.com/"
|
|
},
|
|
"license": "MIT",
|
|
"dependencies": {
|
|
"@11ty/eleventy-utils": "^1.0.2",
|
|
"acorn": "^8.10.0",
|
|
"dependency-graph": "^0.11.0",
|
|
"normalize-path": "^3.0.0"
|
|
},
|
|
"devDependencies": {
|
|
"ava": "^5.3.1"
|
|
},
|
|
"ava": {
|
|
"files": [
|
|
"./test/*.js"
|
|
],
|
|
"ignoredByWatcher": [
|
|
"./test/stubs/**"
|
|
]
|
|
}
|
|
}
|