-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
58 lines (58 loc) · 1.37 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
{
"name": "release-script",
"version": "1.0.2",
"description": "Release tools for projects. From github repo to npm and bower packages",
"bin": {
"release": "./bin/release.js"
},
"files": [
"LICENSE",
"README.md",
"bin"
],
"scripts": {
"build": "rimraf bin && babel src --out-dir bin",
"lint": "eslint .",
"test": "npm run lint",
"patch": "node bin/release.js patch",
"minor": "node bin/release.js minor",
"major": "node bin/release.js major"
},
"repository": {
"type": "git",
"url": "[email protected]:alexkval/release-script.git"
},
"keywords": [
"release-tools",
"release",
"script",
"tools"
],
"author": {
"name": "Alexander Shemetovsky",
"email": "[email protected]"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/AlexKVal/release-script/issues"
},
"homepage": "https://github.com/AlexKVal/release-script#readme",
"devDependencies": {
"babel-cli": "^6.0.15",
"babel-eslint": "^4.0.5",
"babel-preset-es2015": "^6.0.15",
"eslint": "^1.0.0",
"eslint-config-airbnb": "^3.0.0",
"eslint-plugin-react": "^3.3.2",
"mt-changelog": "^0.6.1",
"rimraf": "^2.5.0"
},
"dependencies": {
"colors": "^1.1.2",
"github-url-to-object": "^2.1.0",
"request": "^2.60.0",
"semver": "^5.0.0",
"shelljs": "^0.5.1",
"yargs": "^3.15.0"
}
}