This repository has been archived by the owner on Jan 4, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 87
/
package.json
81 lines (81 loc) · 2.26 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
72
73
74
75
76
77
78
79
80
81
{
"name": "@metahub/conventional-commit-types",
"description": "[DEPRECATED] List of conventional commit types with emojis. 🎉",
"version": "0.0.0-development",
"author": "Pierre Vanduynslager",
"bugs": {
"url": "https://github.com/vanduynslagerp/conventional-commit-types/issues"
},
"config": {
"commitizen": {
"path": "@metahub/cz-conventional-commit"
}
},
"devDependencies": {
"@commitlint/cli": "^3.1.2",
"@commitlint/config-angular": "^3.1.1",
"@metahub/cz-conventional-commit": "^2.0.0",
"@metahub/eslint-config": "^1.6.0",
"ava": "^0.22.0",
"babel-eslint": "^7.2.3",
"codecov": "^2.3.0",
"commitizen": "^2.9.6",
"emoji-regex": "^6.5.1",
"eslint": "^4.4.1",
"eslint-config-prettier": "^2.3.0",
"eslint-plugin-ava": "^4.2.1",
"eslint-plugin-babel": "^4.1.2",
"eslint-plugin-eslint-comments": "^1.0.3",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-jasmine": "^2.8.4",
"eslint-plugin-json": "^1.2.0",
"eslint-plugin-node": "^5.1.1",
"eslint-plugin-prettier": "^2.1.2",
"eslint-plugin-promise": "^3.5.0",
"eslint-plugin-sort-class-members": "^1.2.0",
"eslint-plugin-unicorn": "^2.1.2",
"husky": "^0.14.3",
"nyc": "^11.1.0",
"prettier": "^1.5.3",
"rimraf": "^2.6.1",
"semantic-release": "^7.0.1",
"stringz": "^0.2.2"
},
"engines": {
"node": ">=4"
},
"files": [
"index.js"
],
"homepage": "https://github.com/vanduynslagerp/conventional-commit-types#readme",
"keywords": [
"commitizen",
"conventional-commits",
"emoji"
],
"license": "MIT",
"main": "index.js",
"nyc": {
"include": [
"index.js"
]
},
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "https://github.com/vanduynslagerp/conventional-commit-types.git"
},
"scripts": {
"clean": "rimraf coverage && rimraf .nyc_output",
"cm": "git-cz",
"codecov": "codecov",
"commitmsg": "commitlint -e",
"lint": "eslint index.js test package.json",
"precommit": "npm run lint",
"pretest": "npm run clean && npm run lint",
"semantic-release": "semantic-release pre && npm publish && semantic-release post",
"test": "nyc --all ava -v && nyc report --reporter=lcov"
}
}