This repository has been archived by the owner on Jul 30, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
79 lines (79 loc) · 1.82 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
{
"name": "buildbranch",
"description": "Publish a folder to the given build branch (like gh-pages).",
"version": "2.0.0",
"homepage": "https://github.com/nfroidure/buildbranch",
"author": "Nicolas Froidure",
"bin": {
"buildbranch": "./src/bin.js"
},
"metapak": {
"configs": [
"readme"
],
"data": {
"files": "src/**.js"
}
},
"repository": {
"type": "git",
"url": "git://github.com/nfroidure/buildbranch.git"
},
"scripts": {
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s",
"cli": "env NODE_ENV=${NODE_ENV:-cli}",
"cz": "env NODE_ENV=${NODE_ENV:-cli} git cz",
"lint": "eslint src/**.js",
"metapak": "metapak",
"preversion": "npm t && npm run lint && npm run metapak -s",
"test": "exit 0",
"version": "npm run changelog && git add CHANGELOG.md"
},
"bugs": {
"url": "https://github.com/nfroidure/buildbranch/issues"
},
"license": "MIT",
"main": "src/index",
"engines": {
"node": ">=6.9.5"
},
"keywords": [
"gulpfriendly",
"gruntfriendly",
"ghpages",
"gh-pages",
"build",
"publish",
"git",
"github"
],
"dependencies": {
"rimraf": "^2.5.2",
"shell-escape": "^0.2.0"
},
"devDependencies": {
"commitizen": "^2.9.6",
"conventional-changelog-cli": "^1.3.5",
"coveralls": "2.11.15",
"cz-conventional-changelog": "^2.0.0",
"eslint": "3.16.0",
"eslint-config-simplifield": "4.1.1",
"istanbul": "0.4.5",
"metapak": "1.0.3",
"metapak-nfroidure": "^1.0.2",
"mocha": "3.2.0",
"mocha-lcov-reporter": "1.3.0"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"greenkeeper": {
"ignore": [
"commitizen",
"cz-conventional-changelog",
"conventional-changelog-cli"
]
}
}