-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 2.15 KB
/
package.json
File metadata and controls
76 lines (76 loc) · 2.15 KB
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
{
"name": "apify-shared",
"private": true,
"description": "Tools and constants shared across Apify projects.",
"keywords": [
"apify"
],
"author": {
"name": "Apify",
"email": "support@apify.com",
"url": "https://apify.com"
},
"contributors": [
"Jan Curn <jan@apify.com>",
"Marek Trunkát <marek@apify.com>"
],
"license": "Apache-2.0",
"workspaces": [
"packages/*"
],
"repository": {
"type": "git",
"url": "git+https://github.com/apify/apify-shared-js"
},
"bugs": {
"url": "https://github.com/apify/apify-shared-js/issues"
},
"homepage": "https://apify.com",
"scripts": {
"prepare": "husky",
"prepublishOnly": "lerna run copy",
"clean": "lerna run clean",
"build": "lerna run build",
"test": "vitest",
"test-cov": "vitest --coverage",
"release": "npm run build && lerna version patch && lerna publish from-package --contents dist",
"lint": "eslint packages/*/src test",
"lint:fix": "eslint packages/*/src test --fix"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"lint-staged": {
"*.ts": [
"eslint packages/*/src/**/*.ts --fix"
]
},
"devDependencies": {
"@apify/eslint-config": "^2.0.3",
"@commitlint/config-conventional": "^20.0.0",
"@types/clone-deep": "^4.0.4",
"@types/git-url-parse": "^16.0.0",
"@types/node": "^24.0.0",
"@types/underscore": "^1.11.15",
"@vitest/coverage-v8": "^4.1.4",
"ajv": "^8.17.1",
"clone-deep": "^4.0.1",
"commitlint": "^20.0.0",
"eslint": "^9.24.0",
"globals": "^17.0.0",
"husky": "^9.1.4",
"lerna": "^9.0.6",
"lint-staged": "^16.0.0",
"nock": "^14.0.0",
"strip-ansi": "^6.0.0",
"ts-node": "^10.9.2",
"tsup": "^8.3.0",
"typescript": "^5.8.3",
"typescript-eslint": "^8.29.0",
"underscore": "^1.13.7",
"vitest": "^4.1.4"
},
"packageManager": "npm@10.9.2"
}