This repository has been archived by the owner on Apr 6, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 31
/
package.json
49 lines (49 loc) · 1.52 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
{
"name": "clarity-monorepo-wrapper",
"private": true,
"version": "0.0.0",
"description": "Monorepo for the Clarity Javascript SDK",
"keywords": [],
"author": "Blockstack <engineering@blockstack.com> (https://blockstack.com/)",
"repository": {
"type": "git",
"url": ""
},
"license": "MIT",
"scripts": {
"version": "lerna version --yes --conventional-commits --create-release github --message 'chore(release): publish %s'",
"version-no-push": "lerna version --conventional-commits --force-publish --no-push --conventional-prerelease",
"pub": "lerna publish from-package --yes --no-verify-access",
"prepare": "lerna bootstrap",
"clean": "lerna run clean && lerna clean --yes",
"build": "lerna run build",
"rebuild": "npm run clean && npm run prepare && npm run build",
"test": "lerna run test --stream --concurrency 1",
"test-skip-slow": "cross-env SKIP_SLOW_TESTS=true npm run test",
"lint": "lerna run lint",
"lint-fix": "lerna run lint-fix",
"codecov-upload": "codecov"
},
"devDependencies": {
"@commitlint/cli": "^11.0.0",
"@commitlint/config-conventional": "^11.0.0",
"@types/fs-extra": "^8.0.0",
"@types/node": "^10.14.8",
"codecov": "^3.5.0",
"cross-env": "^5.2.0",
"fs-extra": "^8.1.0",
"husky": "^4.3.5",
"lerna": "^3.14.1",
"typescript": "^3.5.1"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
}
}