-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 986 Bytes
/
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
{
"name": "kittik-cli",
"version": "0.0.0-semantic-release",
"description": "CLI tool for starting Kittik presentations",
"author": "ghaiklor",
"homepage": "https://github.com/kittikjs/cli#readme",
"license": "MIT",
"bugs": {
"url": "https://github.com/kittikjs/cli/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/kittikjs/cli.git"
},
"bin": {
"kittik": "./bin/kittik.js"
},
"scripts": {
"semantic-release": "semantic-release pre && npm publish && semantic-release post",
"test": "echo \"We don't have tests, for now\""
},
"dependencies": {
"commander": "2.9.0",
"kittik": "2.1.2",
"yamljs": "0.2.8"
},
"devDependencies": {
"cz-conventional-changelog": "2.0.0",
"semantic-release": "4.3.5"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"publishConfig": {
"tag": "latest"
},
"release": {
"branch": "master"
}
}