-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
58 lines (58 loc) · 1.91 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
{
"private": true,
"name": "root",
"description": "Key Value storage for Browser(IndexedDB), Node.js, In-Memory.",
"homepage": "https://github.com/azu/kvs",
"bugs": {
"url": "https://github.com/azu/kvs/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/azu/kvs.git"
},
"license": "MIT",
"author": "azu",
"scripts": {
"prepublishOnly": "npm run clean && npm run build",
"build": "lerna run build",
"clean": "lerna run clean",
"test": "lerna run test && npm run size",
"test:browser": "lerna run test:browser",
"test:chrome": "lerna run test:chrome",
"test:firefox": "lerna run test:firefox",
"test:webkit": "lerna run test:webkit",
"size": "size-limit",
"ci": "lerna run test --ignore '@kvs/localstorage'",
"versionup": "lerna version",
"ci:versionup:patch": "lerna version patch --no-push --no-git-tag-version --yes && npm run commit-version",
"ci:versionup:minor": "lerna version minor --no-push --no-git-tag-version --yes && npm run commit-version",
"ci:versionup:major": "lerna version major --no-push --no-git-tag-version --yes && npm run commit-version",
"commit-version": "git add . && git commit -m \"chore(release): v`node -p 'require(\"./lerna.json\").version'`\"",
"release": "lerna publish from-package",
"ci:release": "lerna publish from-package --yes",
"format": "prettier --write \"**/*.{js,jsx,ts,tsx,css}\"",
"prepare": "git config --local core.hooksPath .githooks"
},
"workspaces": [
"examples/*",
"packages/*"
],
"lint-staged": {
"*.{js,jsx,ts,tsx,css}": [
"prettier --write"
]
},
"prettier": {
"singleQuote": false,
"printWidth": 120,
"tabWidth": 4,
"trailingComma": "none"
},
"devDependencies": {
"@size-limit/preset-small-lib": "^8.2.6",
"lerna": "^7.1.4",
"lint-staged": "^13.2.3",
"prettier": "^3.0.0",
"size-limit": "^8.2.6"
}
}