-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 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
50
51
52
53
54
55
56
57
58
59
{
"name": "iolaus",
"description": "An opinionated semantic versioning system for lerna.",
"keywords": [],
"engines": {
"node": ">=8.9"
},
"private": true,
"license": "MIT",
"repository": "https://github.com/effervescentia/iolaus.git",
"scripts": {
"build": "run-s build:common build:rest",
"build:common": "lerna run build --scope=@iolaus/common",
"build:rest": "lerna run build --ignore=@iolaus/common",
"test": "lerna run test",
"prepare": "lerna link && lerna run install-peerdeps",
"release": "node packages/bin/index.js",
"commit": "git cz"
},
"resolutions": {
"deep-extend": "^0.5.1",
"lodash.merge": "^4.6.2"
},
"devDependencies": {
"@team-griffin/install-self-peers": "^1.1.1",
"@types/sinon": "^7.0.11",
"ava": "^2.3.0",
"codecov": "^3.1.0",
"commitizen": "^4.0.3",
"cz-conventional-changelog": "^2.1.0",
"cz-lerna-changelog": "^2.0.2",
"debug": "^4.1.1",
"fixpack": "^2.3.1",
"gh-pages": "^2.0.1",
"husky": "^3.0.4",
"lerna": "^3.13.4",
"lint-staged": "^9.2.5",
"npm-run-all": "^4.1.5",
"nyc": "^13.1.0",
"opn-cli": "^4.0.0",
"prettier": "^1.15.2",
"rimraf": "^2.6.3",
"sinon": "^7.3.2",
"standard-version": "^4.4.0",
"tslint": "^5.11.0",
"tslint-config-prettier": "^1.17.0",
"tslint-immutable": "^5.0.0",
"typedoc": "^0.13.0",
"typescript": "^3.1.6"
},
"config": {
"commitizen": {
"path": "cz-lerna-changelog"
}
},
"workspaces": [
"packages/*"
]
}