forked from ulixee/hero
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
93 lines (93 loc) · 2.77 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
{
"name": "@ulixee/hero-monorepo",
"private": true,
"description": "The Web Browser Built for Scraping",
"scripts": {
"prepare": "husky install",
"build": "yarn && yarn tsc && cd build && yarn",
"build:docs": "ts-node ./docs/scripts/generateAwaitedDOM.ts",
"build:dist": "shx rm -rf build-dist && tsc -b tsconfig.dist.json && ulx-repo-after-build --dist",
"build:dist-local": "yarn build:dist && cd build-dist && yarn",
"build:docker": "yarn build:dist && docker build -t hero .",
"build:ci": "yarn tsc && cd build && yarn install",
"copy:node_modules": "shx cp -r node_modules \"build/node_modules\"",
"copy:dist": "ulx-repo-after-build --dist",
"copy:build": "ulx-repo-after-build",
"tsc": "tsc -b -i tsconfig.json && ulx-repo-after-build",
"watch": "tsc -b -w tsconfig.json",
"watch:dist": "tsc -b -w tsconfig.dist.json",
"clean": "tsc -b --clean tsconfig.json",
"test:build": "cross-env NODE_ENV=test ULX_DATA_DIR=.data-test jest",
"test": "ulx-repo-after-build && cd build && yarn test:build",
"lint": "eslint --cache ./",
"version:check": "ulx-repo-version-check fix",
"version:bump": "ulx-repo-version-bump"
},
"repository": "[email protected]:ulixee/hero.git",
"author": "Data Liberation Foundation",
"contributors": [
"Caleb Clark",
"Blake Byrnes"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/ulixee/hero/issues"
},
"homepage": "https://ulixee.org",
"engines": {
"node": ">=14.0.0"
},
"devDependencies": {
"@commitlint/cli": "^12.0.1",
"@commitlint/config-conventional": "^12.0.1",
"@types/jest": "^28.1.0",
"@types/node": "^14.18.18",
"@ulixee/repo-tools": "^1.0.21",
"awaited-dom": "1.4.0",
"cross-env": "^7.0.3",
"decamelize": "^4.0.0",
"husky": "^7.0.1",
"jest": "^28.1.0",
"jest-environment-node": "^28.1.0",
"jest-summary-reporter": "^0.0.2",
"json2md": "^1.7.0",
"lerna": "^4.0.0",
"lint-staged": "^10.5.2",
"noderdom-detached": "https://github.com/ulixee/noderdom-detached.git#dist",
"shx": "^0.3.3",
"typescript": "~4.7.3"
},
"workspaces": {
"packages": [
"client",
"core",
"end-to-end",
"interfaces",
"testing",
"timetravel",
"plugin-utils",
"plugins/*",
"../../shared/build/*",
"../../unblocked/build/agent/*",
"../../unblocked/build/plugins/*",
"../../unblocked/build/specification",
"../../unblocked/build/js-path",
"../../unblocked/build/real-user-agents"
],
"nohoist": [
"@ulixee/repo-tools"
]
},
"lint-staged": {
"*.ts": [
"eslint --fix"
],
"*.json": [
"prettier --write"
]
},
"resolutions": {
"tough-cookie": "^4.0.0",
"**/ua-parser-js": "0.7.28"
}
}