forked from CyrexEnterprise/iso-language-codes
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 1.83 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 1.83 KB
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
72
73
{
"name": "iso-lang-codes",
"version": "0.0.0-development",
"description": "Node util for ISO Language Codes (639-1 and 693-2) and IETF Language Types",
"main": "./src/index.js",
"scripts": {
"test": "nyc --reporter=text mocha --exit",
"lint": "eslint src/ --ext .js",
"semantic-release": "semantic-release",
"commit": "npx git-cz"
},
"pre-commit": [
"lint"
],
"repository": {
"type": "git",
"url": "https://github.com/Cloudoki/iso-language-codes.git"
},
"keywords": [
"iso language code",
"lang",
"locale",
"country codes"
],
"author": "Cloudoki",
"contributors": [
"Diogo Simões <diogo@cloudoki.com>",
"Délio Amaral <delio@cloudoki.com>"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/Cloudoki/iso-language-codes/issues"
},
"homepage": "https://github.com/Cloudoki/iso-language-codes#readme",
"devDependencies": {
"@semantic-release/git": "^7.0.8",
"@semantic-release/npm": "^5.1.4",
"chai": "^4.2.0",
"commitizen": "^3.0.5",
"cz-conventional-changelog": "^2.1.0",
"eslint": "^5.12.0",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-node": "^8.0.1",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-standard": "^4.0.0",
"istanbul": "^0.4.5",
"mocha": "^5.2.0",
"nyc": "^13.1.0",
"pre-commit": "^1.2.2",
"semantic-release": "^15.13.3",
"semantic-release-cli": "^4.1.0"
},
"dependencies": {},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"release": {
"plugins": [
[
"@semantic-release/git", {
"assets": [
"package.json"
],
"message": "chore(release): ${nextRelease.version} [skip ci]"
}
],
"@semantic-release/npm"
]
}
}