smartbrowser/package.json

51 lines
1.2 KiB
JSON
Raw Normal View History

2016-09-19 18:00:19 +00:00
{
2023-07-10 00:42:14 +00:00
"name": "@push.rocks/smartbrowser",
2022-11-08 06:56:52 +00:00
"version": "2.0.5",
2019-05-28 21:27:55 +00:00
"description": "simplified puppeteer",
2020-06-01 20:19:25 +00:00
"main": "dist_ts/index.js",
"typings": "dist_ts/index.d.ts",
2022-03-24 13:57:16 +00:00
"type": "module",
2016-09-19 18:00:19 +00:00
"scripts": {
2020-06-01 20:19:25 +00:00
"test": "(tstest test/ --web)",
2022-03-24 13:57:16 +00:00
"build": "(tsbuild --web --allowimplicitany)"
2016-09-19 18:00:19 +00:00
},
"repository": {
"type": "git",
"url": "git+ssh://git@gitlab.com/pushrocks/smartbrowser.git"
},
"author": "Lossless GmbH",
"license": "MIT",
"bugs": {
"url": "https://gitlab.com/pushrocks/smartbrowser/issues"
},
"homepage": "https://gitlab.com/pushrocks/smartbrowser#README",
"dependencies": {
2022-03-24 13:57:16 +00:00
"@pushrocks/smartdelay": "^2.0.13",
2022-11-08 06:56:52 +00:00
"@pushrocks/smartpdf": "^3.0.15",
2022-03-24 13:57:16 +00:00
"@pushrocks/smartpuppeteer": "^2.0.0",
2020-06-01 20:19:25 +00:00
"@pushrocks/smartunique": "^3.0.3"
2016-09-19 18:00:19 +00:00
},
"devDependencies": {
2022-03-24 22:41:51 +00:00
"@gitzone/tsbuild": "^2.1.61",
2022-10-26 21:00:43 +00:00
"@gitzone/tsrun": "^1.2.39",
2022-03-24 13:57:16 +00:00
"@gitzone/tstest": "^1.0.69",
2022-11-08 06:56:52 +00:00
"@pushrocks/tapbundle": "^5.0.3",
"@types/node": "^18.11.9"
2019-05-28 21:27:55 +00:00
},
2020-06-01 20:25:32 +00:00
"private": false,
2019-05-28 21:27:55 +00:00
"files": [
2020-06-01 20:19:25 +00:00
"ts/**/*",
"ts_web/**/*",
"dist/**/*",
"dist_*/**/*",
"dist_ts/**/*",
"dist_ts_web/**/*",
"assets/**/*",
2019-05-28 21:27:55 +00:00
"cli.js",
"npmextra.json",
"readme.md"
2021-04-29 14:52:28 +00:00
],
"browserslist": [
"last 1 chrome versions"
2019-05-28 21:27:55 +00:00
]
2023-07-10 00:42:14 +00:00
}