-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
77 lines (77 loc) · 2.21 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
{
"name": "apify-shared",
"private": true,
"description": "Tools and constants shared across Apify projects.",
"keywords": [
"apify"
],
"author": {
"name": "Apify",
"email": "[email protected]",
"url": "https://apify.com"
},
"contributors": [
"Jan Curn <[email protected]>",
"Marek Trunkát <[email protected]>"
],
"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": "jest --silent",
"test-cov": "jest --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-ts": "^0.4.1",
"@commitlint/config-conventional": "^19.2.2",
"@types/clone-deep": "^4.0.4",
"@types/git-url-parse": "^9.0.3",
"@types/jest": "^29.5.12",
"@types/node": "^22.0.2",
"@types/underscore": "^1.11.15",
"@typescript-eslint/eslint-plugin": "^7.18.0",
"@typescript-eslint/parser": "^7.18.0",
"ajv": "^8.17.1",
"clone-deep": "^4.0.1",
"commitlint": "^19.3.0",
"eslint": "^8.57.0",
"husky": "^9.1.4",
"jest": "^29.7.0",
"lerna": "^8.1.7",
"lint-staged": "^15.2.7",
"nock": "^13.5.4",
"strip-ansi": "^6.0.0",
"ts-jest": "^29.2.4",
"ts-node": "^10.9.2",
"tsup": "^8.3.0",
"typescript": "^5.6.3",
"underscore": "^1.13.7"
},
"packageManager": "[email protected]"
}