-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.61 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": "peon",
"description": "Minimal CD tool that can be used to run build commands on `git` repositories and deploy built artifacts locally.",
"version": "0.1.0",
"license": "MIT",
"author": {
"name": "PeopleDoc",
"url": "https://github.com/peopledoc"
},
"contributors": [
"Nicolas Joyard <[email protected]>",
"Xavier Cambar <[email protected]>"
],
"homepage": "https://github.com/peopledoc/peon",
"repository": "https://github.com/peopledoc/peon",
"bugs": "https://github.com/peopledoc/peon/issues",
"keywords": [
"artifact",
"build",
"cd",
"continuous",
"deploy",
"deployment",
"minimal",
"peon",
"repository",
"tool"
],
"main": "index.js",
"scripts": {
"start": "node ./index.js",
"test": "PEON_CONFIG=$(pwd)/test/config.json mocha --file 'test/init.js' --recursive 'test/**/*.test.js'",
"lint": "eslint index.js lib scripts test"
},
"dependencies": {
"@octokit/rest": "^16.17.0",
"body-parser": "^1.18.3",
"child-process-promise": "^2.2.1",
"cors": "^2.8.5",
"express": "^4.16.4",
"express-github-webhook": "^1.0.6",
"fs-extra": "^7.0.1",
"handlebars": "^4.7.7",
"js-yaml": "^3.13.1",
"nodegit": "^0.24.0",
"require-directory": "^2.1.1",
"rsync": "^0.6.1",
"sql-template-strings": "^2.2.2",
"sqlite": "^3.0.3",
"tar": "^4.4.18",
"winston": "^3.1.0"
},
"devDependencies": {
"chai": "^4.2.0",
"eslint-config-peopledoc": "^1.5.0",
"mocha": "^6.0.2",
"request": "^2.88.0",
"request-promise-native": "^1.0.7"
}
}