smartpuppeteer/package.json

41 lines
933 B
JSON
Raw Normal View History

2019-06-03 20:24:10 +00:00
{
"name": "@pushrocks/smartpuppeteer",
2020-02-25 01:38:24 +00:00
"version": "1.0.15",
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": {
2019-11-15 17:59:29 +00:00
"@gitzone/tsbuild": "^2.1.17",
"@gitzone/tstest": "^1.0.28",
2020-02-25 01:38:24 +00:00
"@pushrocks/tapbundle": "^3.2.0",
"@types/node": "^13.7.4",
"tslint": "^6.0.0",
2019-06-03 20:24:10 +00:00
"tslint-config-prettier": "^1.15.0"
},
2019-06-03 20:48:40 +00:00
"dependencies": {
2019-11-15 23:35:03 +00:00
"@pushrocks/smartdelay": "^2.0.6",
2019-11-15 20:44:11 +00:00
"@pushrocks/smartenv": "^4.0.8",
2020-02-25 01:38:24 +00:00
"@types/puppeteer": "^2.0.0",
"puppeteer": "^2.1.1"
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
}