Packages

Playwright Assets is a package for installing and running test assets in Playwright Node.js and Elixir implementations.

Current section

Files

Jump to
playwright_assets package.json
Raw

package.json

{
"name": "playwright-assets",
"version": "1.32.0",
"description": "A server for Playwright test assets",
"main": "pkg/index.js",
"files": [
"pkg"
],
"scripts": {
"clean": "rimraf pkg/*",
"lint": "tslint -c etc/tslint.json -p etc/tsconfig.json --fix",
"assets": "ts-node bin/tools/assets",
"compile": "tsc -p etc/tsconfig.json",
"build": "npm-run-all clean lint compile assets",
"dev:serve": "npm-run-all build start",
"dev:watch": "nodemon --watch src -e ts,ejs --exec npm run dev:serve",
"start": "node ."
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"dotenv": "^8.2.0",
"ejs": "^3.1.6",
"express": "^4.17.1"
},
"devDependencies": {
"@types/dotenv": "^8.2.0",
"@types/express": "^4.17.11",
"@types/fs-extra": "^9.0.11",
"@types/node": "^14.14.41",
"@types/shelljs": "^0.8.8",
"fs-extra": "^9.1.0",
"nodemon": "^2.0.7",
"npm-run-all": "^4.1.5",
"rimraf": "^3.0.2",
"shelljs": "^0.8.4",
"ts-node": "^9.1.1",
"tslint": "^6.1.3",
"typescript": "^4.2.4"
}
}