This repository was archived by the owner on Nov 13, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 2.33 KB
/
Copy pathpackage.json
File metadata and controls
58 lines (58 loc) · 2.33 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
{
"name": "komet",
"version": "0.1.4",
"description": "Write intelligible commit messages, by answering questions",
"keywords": [
"commit",
"message",
"git",
"commit-message",
"git-commit"
],
"author": "Christophe Hurpeau <christophe@hurpeau.com> (http://christophe.hurpeau.com/)",
"contributors": [
"Romain Quilliot <hello@romainquilliot.fr> (http://romainquilliot.fr)"
],
"license": "ISC",
"repository": "git@github.com:kometjs/komet.git",
"homepage": "https://github.com/kometjs/komet",
"main": "./index.js",
"webpack:node": "./lib-node6/index.js",
"webpack:node-dev": "./lib-node6-dev/index.js",
"bin": {
"commit": "./commit",
"prepare-commit-msg": "./prepare-commit-msg"
},
"scripts": {
"build": "pob-build",
"clean": "rm -Rf docs dist test/node6 coverage",
"commit": "./commit",
"lint": "eslint --ext .js,.jsx src/",
"prepare": "ln -s ../../git-hooks/pre-commit .git/hooks/pre-commit 2>/dev/null || true ; ln -s ../../git-hooks/post-checkout .git/hooks/post-checkout 2>/dev/null || true ; ln -s ../../git-hooks/post-merge .git/hooks/post-merge 2>/dev/null || true ; ln -s ../../git-hooks/prepare-commit-msg .git/hooks/prepare-commit-msg 2>/dev/null || true",
"prepublish": "ln -s ../../git-hooks/pre-commit .git/hooks/pre-commit 2>/dev/null || true ; ln -s ../../git-hooks/post-checkout .git/hooks/post-checkout 2>/dev/null || true ; ln -s ../../git-hooks/post-merge .git/hooks/post-merge 2>/dev/null || true ; ln -s ../../git-hooks/prepare-commit-msg .git/hooks/prepare-commit-msg 2>/dev/null || true",
"preversion": "npm run lint && npm run build && pob-repository-check-clean",
"release": "pob-repository-check-clean && pob-release",
"test": "echo \"Error: no test specified\" && exit 0",
"version": "pob-version",
"watch": "pob-watch"
},
"dependencies": {
"chalk": "^1.1.3",
"find-up": "^2.1.0",
"inquirer": "^2.0.0",
"minimist-argv": "^1.0.0"
},
"devDependencies": {
"babel-eslint": "^7.1.1",
"babel-preset-es2015-node6": "^0.4.0",
"eslint": "^3.12.2",
"eslint-config-airbnb-base": "^11.0.0",
"eslint-config-pob": "^10.0.1",
"eslint-plugin-babel": "^4.0.0",
"eslint-plugin-import": "^2.2.0",
"komet-karma": "^0.2.3",
"pob-babel": "^12.9.0",
"pob-release": "^2.3.0",
"tcomb-forked": "^3.4.0"
}
}