-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
38 lines (38 loc) · 1.52 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
{
"name": "@dnvgl/playwright-live-recorder",
"type": "commonjs",
"version": "2.0.52",
"description": "Adds live coding in testing context from browser console when running tests. Provides programmatically configurable recorder. Introduces the idea of strong convention for Page Object Model",
"main": "dist/main.js",
"files": [
"dist/**/*.*"
],
"repository": "https://github.com/dnv-opensource/playwright-live-recorder",
"author": "DNV",
"license": "MIT",
"private": false,
"scripts": {
"build": "tslint -p . && tsc && npx cpx \"src/**/*.{js,css,d.ts}\" dist && npx cpx \"example/**/*.*\" dist/example",
"test": "vitest",
"postinstall": "node -e \"if (process.env.INIT_CWD === process.cwd()) process.exit(); const fs = require('node:fs'); const dest = process.env.INIT_CWD; fs.readdirSync('dist/example').forEach(file => { try { fs.copyFileSync('dist/example/' + file, dest + '/' + file, fs.constants.COPYFILE_EXCL); } catch(e) { if (e.code !== 'EEXIST') throw e; } });\""
},
"devDependencies": {
"@playwright/test": "^1.0.0",
"@types/async-lock": "^1.3.0",
"@types/lodash": "^4.14.185",
"@types/node": "^22.10.5",
"cpx": "^1.5.0",
"tslint": "^6.1.3",
"vitest": "^2.1.8"
},
"dependencies": {
"async-lock": "^1.3.2",
"chokidar": "^3.5.3",
"error-stack-parser": "^2.1.4",
"lodash": "^4.17.21",
"ts-morph": "^16.0.0",
"ts-node": "^10.9.2",
"typescript": "^4.8.2"
},
"packageManager": "[email protected]+sha1.1959a18351b811cdeedbd484a8f86c3cc3bbaf72"
}