detective-stylus
Version:
Get the dependencies of a Stylus file
77 lines (76 loc) • 1.66 kB
JSON
{
"name": "detective-stylus",
"version": "5.0.1",
"description": "Get the dependencies of a Stylus file",
"main": "index.js",
"files": [
"index.js"
],
"scripts": {
"lint": "xo",
"fix": "xo --fix",
"mocha": "mocha",
"test": "npm run lint && npm run mocha",
"test:ci": "c8 npm run mocha"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dependents/node-detective-stylus.git"
},
"keywords": [
"stylus",
"ast",
"static",
"analysis",
"dependencies"
],
"author": "Joel Kemp <joel@mrjoelkemp.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/dependents/node-detective-stylus/issues"
},
"homepage": "https://github.com/dependents/node-detective-stylus",
"engines": {
"node": ">=18"
},
"devDependencies": {
"c8": "^10.1.3",
"mocha": "^11.1.0",
"xo": "^0.60.0"
},
"xo": {
"space": true,
"ignores": [
"test/fixtures/*"
],
"rules": {
"arrow-body-style": "off",
"capitalized-comments": "off",
"comma-dangle": [
"error",
"never"
],
"curly": [
"error",
"multi-line"
],
"operator-linebreak": [
"error",
"after"
],
"object-curly-spacing": [
"error",
"always"
],
"space-before-function-paren": [
"error",
"never"
],
"unicorn/no-anonymous-default-export": "off",
"unicorn/prefer-module": "off",
"unicorn/prefer-node-protocol": "off",
"unicorn/prefer-top-level-await": "off",
"unicorn/prevent-abbreviations": "off"
}
}
}