smartpuppeteer/package.json

45 lines
1011 B
JSON
Raw Normal View History

2019-06-03 20:24:10 +00:00
{
"name": "@pushrocks/smartpuppeteer",
2021-11-07 18:51:50 +00:00
"version": "1.0.36",
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-03-24 12:51:12 +00:00
"@gitzone/tsbuild": "^2.1.60",
"@gitzone/tstest": "^1.0.69",
"@pushrocks/tapbundle": "^5.0.3",
"@types/node": "^17.0.23",
2021-01-08 21:14:01 +00:00
"tslint": "^6.1.3",
2019-06-03 20:24:10 +00:00
"tslint-config-prettier": "^1.15.0"
},
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",
"puppeteer": "^13.5.1",
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
]
2021-11-07 18:51:50 +00:00
}