-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
60 lines (60 loc) · 1.75 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
{
"name": "gitlab-ci-variables-cli",
"version": "3.0.0",
"description": "CLI tool to set/get pipeline variables on Gitlab CI.",
"author": "Khoa Tran <quangkhoa@gmail.com>",
"contributors": [
"Brendan Abbott <brendan@bloodbone.ws>",
"Baptiste Redon <batred.12@gmail.com>",
"Julian Fell <julesfell@gmail.com>"
],
"license": "MIT",
"keywords": [
"gitlab",
"gitlab-ci"
],
"repository": {
"type": "git",
"url": "git@github.com:temando/gitlab-ci-variables-cli.git"
},
"bin": {
"glci": "bin/glci.js"
},
"main": "bin/glci.js",
"files": [
"bin"
],
"scripts": {
"lint": "$(npm bin)/eslint src",
"test": "NODE_ENV=test $(npm bin)/mocha --recursive --compilers js:babel-core/register test",
"test:coverage": "$(npm bin)/nyc --check-coverage --lines 90 --reporter=text --reporter=text-summary npm test",
"build": "rm -Rf bin && $(npm bin)/babel src --out-dir bin --source-maps inline",
"deploy": "npm run build && npm link",
"preversion": "npm run build && npm run lint && npm run test"
},
"dependencies": {
"axios": "^0.16.2",
"bluebird": "^3.5.0",
"commander": "^2.11.0",
"git-remote-origin-url": "^2.0.0",
"git-url-parse": "^7.0.0",
"is-primitive": "^2.0.0",
"js-yaml": "^3.9.1",
"rc": "^1.2.1",
"url-parse": "^1.1.9"
},
"devDependencies": {
"axios-mock-adapter": "^1.9.0",
"babel-cli": "^6.26.0",
"babel-eslint": "^7.2.3",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-transform-async-to-module-method": "^6.24.1",
"babel-preset-env": "^1.6.0",
"chai": "^4.1.1",
"eslint": "^4.5.0",
"eslint-config-airbnb-base": "^11.3.1",
"eslint-plugin-import": "^2.7.0",
"mocha": "^3.5.0",
"nyc": "^11.1.0"
}
}