smartpuppeteer/package.json

41 lines
937 B
JSON
Raw Normal View History

2019-06-03 20:24:10 +00:00
{
"name": "@pushrocks/smartpuppeteer",
2021-01-08 21:14:01 +00:00
"version": "1.0.16",
2019-06-03 20:24:10 +00:00
"private": false,
"description": "simplified access to puppeteer",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"author": "Lossless GmbH",
"license": "MIT",
"scripts": {
"test": "(tstest test/)",
2019-06-03 21:28:44 +00:00
"build": "(tsbuild --web)",
2019-06-03 20:24:10 +00:00
"format": "(gitzone format)"
},
"devDependencies": {
2021-01-08 21:14:01 +00:00
"@gitzone/tsbuild": "^2.1.25",
"@gitzone/tstest": "^1.0.52",
"@pushrocks/tapbundle": "^3.2.9",
"@types/node": "^14.14.20",
"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-01-08 21:14:01 +00:00
"@pushrocks/smartdelay": "^2.0.10",
"@pushrocks/smartenv": "^4.0.16",
"@types/puppeteer": "^5.4.2",
"puppeteer": "^5.5.0"
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/**/*",
"dist_web/**/*",
"dist_ts_web/**/*",
"assets/**/*",
2019-06-03 20:24:10 +00:00
"cli.js",
"npmextra.json",
"readme.md"
]
2019-11-16 00:15:10 +00:00
}