-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
71 lines (71 loc) · 1.66 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
66
67
68
69
70
71
{
"name": "iso-lang-codes",
"version": "2.2.0",
"description": "Node util for ISO Language Codes (639-1 and 693-2) and IETF Language Types",
"main": "./src/index.js",
"scripts": {
"test": "node --test",
"lint": "standard",
"semantic-release": "semantic-release",
"commit": "npx git-cz"
},
"types": "./src/index.d.ts",
"pre-commit": [
"lint"
],
"repository": {
"type": "git",
"url": "https://github.com/CyrexEnterprise/iso-language-codes.git"
},
"keywords": [
"iso language code",
"lang",
"locale",
"country codes"
],
"author": "Cyrex Enterprise",
"maintainers": [
"Diogo Simões <[email protected]>",
"Délio Amaral <[email protected]>"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/CyrexEnterprise/iso-language-codes/issues"
},
"homepage": "https://github.com/CyrexEnterprise/iso-language-codes#readme",
"devDependencies": {
"@semantic-release/git": "10.0.1",
"commitizen": "4.3.1",
"cz-conventional-changelog": "3.3.0",
"pre-commit": "1.2.2",
"semantic-release": "24.1.2",
"standard": "^17.1.2"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"release": {
"branches": [
{
"name": "master"
}
],
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/npm",
[
"@semantic-release/git",
{
"assets": [
"package.json"
],
"message": "chore(release): ${nextRelease.version} [ci skip]"
}
],
"@semantic-release/github"
]
}
}