-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.47 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
{
"name": "machina",
"version": "0.0.1",
"private": true,
"description": "Proof-of-concept browser automation toolkit",
"main": "index.js",
"engines": {
"node": ">=16"
},
"bin": {
"machina": "./bin/machina"
},
"scripts": {
"test": "npm run test:unit & npm run test:integration",
"test:unit": "jest ./src",
"test:unit:watch": "jest ./src --watch",
"test:integration": "jest ./test/integration",
"compile": "tsc --project tsconfig.build.json",
"compile:watch": "tsc --project tsconfig.build.json --watch",
"lint:syntax": "eslint .",
"lint:formatting": "prettier . --check",
"fix:syntax": "eslint --fix .",
"fix:formatting": "prettier --write ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/despan/machina.git"
},
"keywords": [
"browser-automation"
],
"author": "Mushegh Antaranyan",
"license": "MIT",
"bugs": {
"url": "https://github.com/despan/machina/issues"
},
"homepage": "https://github.com/despan/machina#readme",
"devDependencies": {
"@types/jest": "^29.1.1",
"@typescript-eslint/eslint-plugin": "^5.38.1",
"@typescript-eslint/parser": "^5.38.1",
"delay": "^5.0.0",
"eslint": "^8.24.0",
"eslint-config-prettier": "^8.5.0",
"jest": "^29.1.2",
"jest-mock-extended": "^3.0.1",
"prettier": "^2.7.1",
"ts-jest": "^29.0.3",
"typescript": "^4.8.4"
},
"dependencies": {
"playwright": "^1.26.1",
"yargs-parser": "^21.1.1"
}
}