forked from MansaGroup/nx-gcs-remote-cache
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
85 lines (85 loc) · 2.19 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
{
"name": "@mansagroup/nx-gcs-remote-cache",
"version": "1.1.0",
"description": "A Google Cloud Storage distributed cache plugin for Nx",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"typings": "lib/index.d.ts",
"scripts": {
"build": "tsc",
"lint": "eslint src",
"lint:fix": "eslint --fix src",
"test": "jest --passWithNoTests",
"prepare": "husky install",
"prepublishOnly": "npm run build",
"release": "np --message=\"chore: v%s\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/MansaGroup/nx-gcs-remote-cache.git"
},
"keywords": [
"nrwl",
"nx",
"distributed",
"cache",
"gcp",
"gcs"
],
"author": "Jérémy Levilain <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/MansaGroup/nx-gcs-remote-cache/issues"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
],
"rules": {
"header-max-length": [
2,
"always",
85
]
}
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": "eslint --fix",
"*.{md,yml,html,css,scss,json}": "prettier --write"
},
"homepage": "https://github.com/MansaGroup/nx-gcs-remote-cache#readme",
"devDependencies": {
"@commitlint/cli": "17.4.4",
"@commitlint/config-conventional": "17.4.4",
"@types/tar": "6.1.4",
"@types/tmp": "0.2.3",
"@typescript-eslint/eslint-plugin": "5.54.1",
"@typescript-eslint/parser": "5.54.1",
"eslint": "8.36.0",
"eslint-config-airbnb-base": "15.0.0",
"eslint-config-prettier": "8.7.0",
"eslint-plugin-import": "2.27.5",
"eslint-plugin-import-helpers": "1.3.1",
"eslint-plugin-jest": "27.2.1",
"eslint-plugin-prettier": "4.2.1",
"eslint-plugin-sonarjs": "0.18.0",
"eslint-plugin-unused-imports": "2.0.0",
"husky": "8.0.3",
"jest": "29.5.0",
"jest-circus": "29.5.0",
"lint-staged": "13.2.0",
"np": "7.6.3",
"prettier": "2.8.4",
"ts-jest": "29.0.5",
"typescript": "4.9.5"
},
"dependencies": {
"@google-cloud/storage": "6.9.4",
"chalk": "5.2.0",
"tar": "6.1.13",
"tmp-promise": "3.0.3"
},
"peerDependencies": {
"@nx/workspace": "^16.0.0"
}
}