-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 1.42 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
60
61
62
63
64
65
{
"name": "@stencila/dev-config-packages",
"description": "Shared development configurations for Stencila projects",
"main": "lerna.json",
"scripts": {
"prepare": "lerna bootstrap && husky install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/stencila/dev-config.git"
},
"author": "Stencila",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/stencila/dev-config/issues"
},
"homepage": "https://github.com/stencila/dev-config#readme",
"devDependencies": {
"@commitlint/config-conventional": "16.2.4",
"@stencila/eslint-config": "file:packages/eslint-config",
"commitlint": "16.3.0",
"husky": "7.0.4",
"lerna": "4.0.0",
"prettier": "2.8.8",
"pretty-quick": "3.3.1"
},
"prettier": "./packages/dev-config/prettier-config.json",
"commitlint": {
"extends": [
"@commitlint/config-conventional"
],
"rules": {
"scope-case": [
2,
"always",
"sentence-case"
],
"subject-case": [
2,
"always",
"sentence-case"
]
}
},
"eslintConfig": {
"extends": "@stencila/eslint-config"
},
"renovate": {
"extends": [
"@stencila"
],
"packageRules": [
{
"updateTypes": [
"minor",
"patch",
"pin",
"digest"
],
"automerge": true,
"automergeType": "branch"
}
]
}
}