-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
88 lines (88 loc) · 2.46 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
{
"name": "har-sdk",
"version": "0.0.0",
"private": true,
"repository": {
"type": "git",
"url": "git+https://github.com/NeuraLegion/har-sdk.git"
},
"engines": {
"node": ">=16.x",
"npm": ">=8.x"
},
"workspaces": [
"packages/*"
],
"author": {
"name": "Artem Derevnjuk",
"email": "[email protected]"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/NeuraLegion/har-sdk/issues"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"lint-staged": {
"*.ts": [
"eslint --fix"
],
"*.{ts,js,json,md}": [
"prettier --write"
]
},
"scripts": {
"lerna": "lerna",
"cross-env": "cross-env",
"husky": "husky",
"semantic-release": "multi-semantic-release",
"build": "lerna run build",
"build:changed": "lerna run --since origin/master --include-dependencies --include-dependents build",
"lint": "lerna run lint",
"lint:changed": "lerna run --since origin/master lint",
"test": "lerna run test",
"test:changed": "lerna run --since origin/master --include-dependents test",
"coverage": "lerna run coverage",
"coverage:all": "jest --coverage",
"coverage:changed": "lerna run --since origin/master --include-dependents coverage",
"format": "lerna run format",
"format:changed": "lerna run --since origin/master format",
"prepare": "is-ci || husky install"
},
"homepage": "https://github.com/NeuraLegion/har-sdk#readme",
"devDependencies": {
"@commitlint/cli": "^16.2.1",
"@commitlint/config-conventional": "^16.2.1",
"@qiwi/multi-semantic-release": "^6.5.1",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-typescript": "^8.3.0",
"@types/jest": "^27.5.0",
"@types/node": "^18.13.0",
"@typescript-eslint/eslint-plugin": "^5.12.1",
"@typescript-eslint/parser": "^5.12.1",
"copyfiles": "^2.4.1",
"cross-env": "^7.0.3",
"eslint": "^8.9.0",
"eslint-config-prettier": "^8.4.0",
"eslint-import-resolver-typescript": "^2.5.0",
"eslint-plugin-import": "^2.25.4",
"husky": "^7.0.4",
"is-ci": "^3.0.1",
"jest": "^28.1.0",
"lerna": "^6.1.0",
"lint-staged": "^12.3.4",
"nock": "^13.2.4",
"prettier": "^2.5.1",
"rimraf": "^3.0.2",
"rollup": "^2.68.0",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-visualizer": "^5.5.4",
"ts-jest": "^28.0.1",
"ts-node": "^10.5.0",
"typescript": "^4.5.5"
},
"dependencies": {}
}