UNPKG

flysh

Version:

DOM Document Object Artifact Collector

63 lines 1.76 kB
{ "author": "John Van Derton", "name": "flysh", "description": "DOM Document Object Artifact Collector", "license": "MIT", "version": "1.1.7", "main": "./dist/cjs/index.js", "modules": "./dist/esm/index.js", "types": "./dist/types/index.d.ts", "directories": { "test": "test" }, "bugs": { "url": "https://github.com/johnvanderton/flysh/issues" }, "files": [ "dist", "version" ], "scripts": { "deploy (all)": "rimraf dist/ && tsc -b tsconfig.json tsconfig.esm.json tsconfig.types.json && node dist/cjs/example/index.js", "build": "tsc -b tsconfig.json tsconfig.esm.json tsconfig.types.json", "build doc": "npx typedoc --internalModule model --plugin typedoc-plugin-missing-exports --out docs ./src", "run": "node dist/cjs/example/index.js", "test [windows]": "mocha -r ts-node/register test/**/*.test.ts", "test [*nix]": "mocha -r ts-node/register test/**/*.test.ts test/**/**/*.test.ts test/src/**/*.test.ts" }, "repository": { "type": "git", "url": "https://github.com/johnvanderton/flysh.git" }, "dependencies": { "@types/node": "^24.1.0", "jquery": "^3.7.1", "jsdom": "^26.1.0", "properties-reader": "^2.2.0", "tslog": "^4.7.1", "typedjson": "^1.7.0" }, "devDependencies": { "@types/chai": "^5.2.2", "@types/mocha": "^10.0.4", "chai": "^4.4.1", "chai-as-promised": "^7.1.2", "mocha": "^11.7.1", "rimraf": "^6.0.1", "ts-node": "^10.5.0", "typedoc": "^0.28.8", "typedoc-plugin-missing-exports": "^4.0.0", "typescript": "^5.8.3" }, "keywords": [ "crawler", "crawler-engine", "DOM", "HTML", "jquery", "parser", "parser-library", "typescript", "typescript-library" ] }