This repository has been archived by the owner on Nov 2, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
44 lines (44 loc) · 1.63 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
{
"name": "request-registry-repository",
"version": "1.0.0",
"description": "RequestRegistry is a generic utility (~1.5kb gziped) to be used as part of your frontend data fetching layer to provide a typed, simplified and consistent API over various remote web services via caching.",
"bugs": "https://github.com/namics/request-registry/issues",
"homepage": "https://github.com/namics/request-registry",
"repository": "https://github.com/namics/request-registry.git",
"scripts": {
"\n// Installation": "",
"postinstall": "lerna bootstrap --hoist --no-ci",
"\n// Build": "",
"build": "lerna exec --concurrency 1 -- npm run build",
"prettier": "prettier --write \"**/*.*(js|jsx|ts|tsx|json)\"",
"test": "lerna run test",
"size": "lerna run size",
"\n// Package Management": "",
"upgrade": "lerna exec --concurrency 1 -- npx npm-check-updates -u -x mobx",
"clean": "lerna exec --concurrency 1 -- npx rimraf node_modules .rts* dist coverage .cache; npx rimraf node_modules",
"commit": "git-cz",
"pkg-ok": "lerna exec --concurrency 1 -- npm run prepublishOnly",
"release": "lerna publish --conventional-commits --no-commit-hooks"
},
"author": "Jan Nicklas",
"license": "MIT",
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
},
"devDependencies": {
"@namics/prettier-config": "0.4.3",
"commitizen": "4.0.3",
"cz-conventional-changelog": "3.1.0",
"lerna": "3.20.2",
"husky": "4.2.3",
"prettier": "1.19.1",
"pretty-quick": "2.0.1"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}