-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
69 lines (69 loc) · 1.85 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
{
"name": "@njakob/breeze",
"version": "1.0.1",
"description": "Git Flow CLI wrapper for NPM based products",
"author": "Nicolas Jakob <nicow.jakob@gmail.com>",
"license": "MIT",
"homepage": "https://github.com/njakob/breeze",
"repository": {
"type": "git",
"url": "git://github.com/njakob/breeze.git"
},
"bugs": {
"url": "https://github.com/njakob/breeze/issues"
},
"keywords": [
"git",
"flow",
"branch",
"release",
"feature",
"hotfix",
"tool",
"cli",
"command-line"
],
"bin": {
"breeze": "./bin/breeze.js"
},
"scripts": {
"clean": "rimraf lib",
"build": "npm run clean && babel -d lib src",
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"flow": "flow check",
"validate": "npm run lint && npm run flow",
"bump:major": "npm version major -m \"Bump to %s\"",
"bump:minor": "npm version minor -m \"Bump to %s\"",
"bump:patch": "npm version patch -m \"Bump to %s\"",
"prepublish": "npm run validate && npm run build"
},
"devDependencies": {
"babel-cli": "^6.18.0",
"babel-eslint": "^7.1.1",
"babel-plugin-module-resolver": "^2.5.0",
"babel-plugin-syntax-flow": "^6.13.0",
"babel-plugin-transform-flow-strip-types": "^6.14.0",
"babel-preset-es2015": "^6.14.0",
"babel-preset-stage-0": "^6.5.0",
"eslint": "^3.12.1",
"eslint-config-njakob": "^3.1.1",
"eslint-import-resolver-babel-module": "^3.0.0",
"eslint-plugin-flowtype": "^2.18.2",
"eslint-plugin-import": "^2.2.0",
"flow-bin": "^0.39.0",
"opener": "^1.4.2",
"rimraf": "^2.5.4"
},
"dependencies": {
"@njakob/parcel": "^1.0.2",
"@njakob/terminus": "^1.0.0",
"babel-polyfill": "^6.23.0",
"bugsy": "^2.2.2",
"nodegit": "^0.16.0",
"nodegit-flow": "^0.3.0",
"raclette": "^1.0.2",
"semver": "^5.3.0",
"yargs": "^6.6.0"
}
}