-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
52 lines (52 loc) · 1.23 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
{
"name": "gitlab-merge",
"version": "1.1.2",
"description": "Tool to create merge request on gitlab from terminal",
"bin": {
"gitlab-merge": "./dist/index.js"
},
"repository": "https://github.com/CVarisco/gitlab-merge.git",
"author": "Christian Varisco <[email protected]>",
"license": "MIT",
"engines": {
"node": ">=6"
},
"main": "./dist/index.js",
"files": [
"dist"
],
"scripts": {
"lint": "eslint src test",
"build": "./scripts/build.sh",
"watch": "npm-watch",
"try": "node ./dist/index.js",
"test": "jest",
"test:watch": "jest --watch"
},
"watch": {
"lint": "src/**/*.js",
"build": "src/**/*.js"
},
"dependencies": {
"ascii-art": "1.5.0",
"babel-polyfill": "6.26.0",
"chalk": "2.1.0",
"cosmiconfig": "3.1.0",
"git-branch": "2.0.1",
"inquirer": "6.2.0",
"ora": "1.4.0",
"request-promise": "4.2.2"
},
"devDependencies": {
"babel-cli": "6.18.0",
"babel-eslint": "7.1.1",
"babel-preset-env": "1.1.8",
"babel-preset-stage-2": "6.18.0",
"eslint": "3.14.0",
"eslint-config-airbnb-base": "11.0.1",
"eslint-plugin-import": "2.2.0",
"jest": "20.0.4",
"mock-fs": "3.12.1",
"npm-watch": "0.5.0"
}
}