storycrawler
Version:
Utilities to build Storybook crawling tools with Puppeteer
84 lines (83 loc) • 1.84 kB
JSON
{
"name": "storycrawler",
"version": "5.0.1",
"description": "Utilities to build Storybook crawling tools with Puppeteer",
"engines": {
"node": ">=18"
},
"main": "lib/index.js",
"typings": "lib/index.d.ts",
"scripts": {
"clean": "rimraf -g lib \"*.tsbuildinfo\"",
"build": "tsc -p tsconfig.build.json",
"jest": "jest",
"test": "npm run jest",
"typedoc": "typedoc --out \"../../dist-pages/typedoc/storycrawler\" --ignoreCompilerErrors --tsconfig tsconfig.build.json src"
},
"repository": {
"type": "git",
"url": "git+https://github.com/reg-viz/storycap.git"
},
"author": "tsuyoshiwada",
"contributors": [
"Yosuke Kurami"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/reg-viz/storycap/issues"
},
"homepage": "https://github.com/reg-viz/storycap/packages/storycrawler",
"files": [
"lib",
"CHANGELOG.md",
"README.md",
"LICENSE",
"package.json"
],
"keywords": [
"storybook",
"puppeteer",
"chrome"
],
"devDependencies": {
"@types/jest": "29.5.12",
"@types/node": "^20.0.0",
"@types/wait-on": "^5.0.0",
"jest": "29.7.0",
"ts-jest": "29.1.2",
"typedoc": "0.25.13",
"typescript": "5.4.5"
},
"dependencies": {
"chalk": "^2.4.1",
"puppeteer-core": "^9.0.0",
"wait-on": "^7.0.0"
},
"jest": {
"moduleFileExtensions": [
"ts",
"tsx",
"js"
],
"transform": {
"^.+\\.tsx?$": [
"ts-jest",
{
"diagnostics": false
}
]
},
"testMatch": [
"**/__tests__/*.(ts|tsx)",
"**/*.test.(ts|tsx)"
],
"testPathIgnorePatterns": [
"/node_modules/",
"_old/.*",
"examples/.*",
"\\.d\\.ts$",
"lib/.*"
]
},
"gitHead": "e5bac01efe6d8ca1e29a1820de2b16225f3ebec9"
}