forked from livepeer/livepeer-monorepo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.89 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
{
"private": true,
"name": "livepeerjs",
"version": "1.0.0-alpha.3",
"workspaces": ["packages/*"],
"repository": {
"type": "git",
"url": "https://github.com/livepeer/livepeerjs.git"
},
"bugs": "https://github.com/livepeer/livepeerjs/issues",
"homepage": "https://livepeer.org",
"scripts": {
"clean": "npx lerna clean --yes && rm -rf node_modules",
"cz": "npx git-cz",
"commitmsg": "npx commitlint -e $GIT_PARAMS",
"coverage":
"npx lerna run coverage --ignore @livepeer/explorer --ignore @livepeer/player && mkdir -p coverage && npx lcov-result-merger 'packages/*/coverage/lcov.info' ./coverage/lcov.info",
"docs":
"npx lerna run docs && npx lerna run copy-docs && cp README.md docs/README.md",
"precommit": "npx pretty-quick --staged",
"prepush": "yarn test",
"prepare":
"npx lerna run build --stream --ignore @livepeer/explorer --ignore @livepeer/player",
"release": "npx lerna publish --conventional-commits --yes",
"release:dry-run":
"npx lerna publish --skip-git --skip-npm --cd-version prerelease --conventional-commits --yes",
"release:alpha":
"npx lerna publish --cd-version prerelease --conventional-commits --yes",
"test":
"npx lerna run test --ignore @livepeer/explorer --ignore @livepeer/player",
"updated": "npx lerna updated --json"
},
"devDependencies": {
"@commitlint/cli": "^6.1.3",
"@commitlint/config-conventional": "^6.1.3",
"commitizen": "^2.9.6",
"cz-conventional-changelog": "^2.1.0",
"flow-bin": "^0.69.0",
"husky": "^0.14.3",
"lcov-result-merger": "^3.0.0",
"lerna": "^2.9.0",
"prettier": "^1.11.1",
"pretty-quick": "^1.4.1"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"husky": {
"hooks": {
"pre-commit": "npx pretty-quick --staged",
"pre-push": "yarn test"
}
}
}