-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.15 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
{
"name": "patoka",
"version": "1.0.0",
"description": "The Patoka Framework.",
"author": "",
"license": "UNLICENSED",
"engineStrict": true,
"engines": {
"node": ">= 20.18.1"
},
"devDependencies": {
"@types/node": "~20.17.10",
"prettier": "~3.4.2",
"rimraf": "~6.0.1",
"ts-jest": "~29.2.5",
"tsutils": "~3.21.0",
"typescript": "~4.8.2"
},
"scripts": {
"clean": "rimraf coverage build tmp",
"build": "tsc -p tsconfig.release.json",
"watch": "tsc -w -p tsconfig.release.json",
"lint": "tslint -t stylish --project \"tsconfig.json\"",
"pretest": "npm run lint",
"test": "npm run test-only",
"test-only": "jest --coverage",
"test:watch": "jest --watch"
},
"dependencies": {
"async-mutex": "^0.5.0",
"chrome-launcher": "^1.1.2",
"chrome-remote-interface": "^0.33.2",
"command-line-args": "^6.0.1",
"dotenv": "^16.4.7",
"fs": "0.0.1-security",
"import-fresh": "^3.3.0",
"ini": "^5.0.0",
"log4js": "^6.6.1",
"minimist": "^1.2.8",
"puppeteer": "^23.11.1",
"rxjs": "^7.8.1",
"tslib": "~2.8.1",
"uuid": "^8.3.2",
"zeromq": "^6.1.2"
}
}