smartpuppeteer/package.json

42 lines
944 B
JSON
Raw Normal View History

2019-06-03 20:24:10 +00:00
{
2023-07-10 08:17:36 +00:00
"name": "@push.rocks/smartpuppeteer",
2022-07-18 01:08:33 +00:00
"version": "2.0.2",
2019-06-03 20:24:10 +00:00
"private": false,
"description": "simplified access to puppeteer",
2021-01-08 21:16:25 +00:00
"main": "dist_ts/index.js",
"typings": "dist_ts/index.d.ts",
2022-03-24 12:51:12 +00:00
"type": "module",
2019-06-03 20:24:10 +00:00
"author": "Lossless GmbH",
"license": "MIT",
"scripts": {
2022-03-24 12:51:12 +00:00
"test": "tstest test/",
"build": "tsbuild --web --allowimplicitany"
2019-06-03 20:24:10 +00:00
},
"devDependencies": {
2022-07-18 00:48:46 +00:00
"@gitzone/tsbuild": "^2.1.63",
"@gitzone/tstest": "^1.0.71",
2022-03-24 12:51:12 +00:00
"@pushrocks/tapbundle": "^5.0.3",
2022-07-18 00:48:46 +00:00
"@types/node": "^18.0.6"
2019-06-03 20:24:10 +00:00
},
2019-06-03 20:48:40 +00:00
"dependencies": {
2021-08-17 00:50:49 +00:00
"@pushrocks/smartdelay": "^2.0.13",
2022-03-24 12:51:12 +00:00
"@pushrocks/smartshell": "^2.0.30",
2022-07-18 00:48:46 +00:00
"puppeteer": "^15.4.0",
2021-08-17 13:22:10 +00:00
"tree-kill": "^1.2.2"
2019-06-03 20:48:40 +00:00
},
2019-06-03 20:24:10 +00:00
"files": [
2019-11-15 22:41:39 +00:00
"ts/**/*",
"ts_web/**/*",
"dist/**/*",
2021-01-08 21:16:25 +00:00
"dist_*/**/*",
"dist_ts/**/*",
2019-11-15 22:41:39 +00:00
"dist_ts_web/**/*",
"assets/**/*",
2019-06-03 20:24:10 +00:00
"cli.js",
"npmextra.json",
"readme.md"
2021-01-08 21:16:25 +00:00
],
"browserslist": [
"last 1 chrome versions"
2019-06-03 20:24:10 +00:00
]
2023-07-10 08:17:36 +00:00
}