-
Notifications
You must be signed in to change notification settings - Fork 16
/
package.json
62 lines (62 loc) · 1.51 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
{
"name": "glci",
"description": "Ease GitLab CI Pipelines set-up by running your jobs locally in Docker containers.",
"main": "./index.js",
"bin": {
"glci": "./dist/cli.min.js"
},
"files": [
"./dist"
],
"keywords": [
"gitlab",
"ci",
"local",
"docker",
"pipelines",
"jobs"
],
"homepage": "https://github.com/mdubourg001/glci",
"repository": {
"type": "git",
"url": "https://github.com/mdubourg001/glci"
},
"license": "MIT",
"author": {
"name": "Maxime Dubourg",
"email": "maxime.dubourg@protonmail.com",
"url": "https://maximedubourg.com/"
},
"dependencies": {
"chalk": "^4.1.0",
"deepmerge": "^4.2.2",
"dockerode": "^3.2.1",
"dotenv": "^8.2.0",
"fs-extra": "^9.1.0",
"glob": "^7.1.6",
"js-yaml": "^4.0.0",
"nodegit": "^0.27.0",
"slugify": "^1.5.0",
"uvu": "^0.5.1",
"yargs": "^16.2.0"
},
"devDependencies": {
"@babel/core": "^7.13.14",
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.13.8",
"@babel/plugin-proposal-optional-chaining": "^7.13.12",
"@rollup/plugin-babel": "^5.3.0",
"@rollup/plugin-commonjs": "^18.0.0",
"@rollup/plugin-json": "^4.1.0",
"mock-fs": "^4.13.0",
"np": "^7.4.0",
"rollup": "^2.44.0",
"rollup-plugin-preserve-shebang": "^1.0.1"
},
"scripts": {
"build": "rollup -c",
"prepublish": "yarn build",
"test": "export NODE_ENV=test && node tests/*.test.js",
"start": "unset NODE_ENV && node index.js"
},
"version": "0.5.1"
}