smartbrowser/package.json

51 lines
1.2 KiB
JSON
Raw Normal View History

2016-09-19 18:00:19 +00:00
{
2019-05-28 21:27:55 +00:00
"name": "@pushrocks/smartbrowser",
2021-11-07 19:42:50 +00:00
"version": "1.0.22",
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",
2016-09-19 18:00:19 +00:00
"scripts": {
2020-06-01 20:19:25 +00:00
"test": "(tstest test/ --web)",
"build": "(tsbuild --web)"
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": {
2021-04-29 14:52:28 +00:00
"@pushrocks/smartdelay": "^2.0.10",
2021-04-29 15:26:08 +00:00
"@pushrocks/smartpdf": "^2.0.9",
2021-04-29 14:52:28 +00:00
"@pushrocks/smartpuppeteer": "^1.0.21",
2020-06-01 20:19:25 +00:00
"@pushrocks/smartunique": "^3.0.3"
2016-09-19 18:00:19 +00:00
},
"devDependencies": {
2021-04-29 14:52:28 +00:00
"@gitzone/tsbuild": "^2.1.25",
"@gitzone/tstest": "^1.0.52",
"@pushrocks/tapbundle": "^3.2.14",
"tslint": "^6.1.3",
2019-05-28 21:27:55 +00:00
"tslint-config-prettier": "^1.18.0"
},
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
]
2021-11-07 19:42:50 +00:00
}