-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 1.7 KB
/
package.json
File metadata and controls
74 lines (74 loc) · 1.7 KB
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
63
64
65
66
67
68
69
70
71
72
73
74
{
"name": "robonaut",
"version": "2.2.1-alpha.0",
"description": "A mono-(poly)-repo manager for NPM+Git libraries.",
"preferGlobal": true,
"main": "robonaut.js",
"bin": {
"robonaut": "robonaut.js"
},
"scripts": {
"start": "node robonaut.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/f1lt3r/robotnaut.git"
},
"keywords": [
"monorepo",
"git",
"npm",
"node",
"package",
"manage",
"project",
"ecosystem"
],
"author": "f1lt3r",
"license": "MIT",
"bugs": {
"url": "https://github.com/f1lt3r/robotnaut/issues"
},
"homepage": "https://github.com/f1lt3r/robotnaut#readme",
"devDependencies": {
"xo": "^0.17.1"
},
"dependencies": {
"bluebird": "^3.4.6",
"chalk": "^1.1.3",
"commander": "^2.9.0",
"extendify": "^1.0.0",
"fetch-promise": "^1.0.2",
"fs-extra": "^1.0.0",
"git-rev-sync": "^1.8.0",
"jsonfile": "^2.4.0",
"lodash": "^4.17.3",
"merge-array-object": "^1.0.4",
"package-json": "^2.4.0",
"pinch": "^0.1.3",
"promise-charm": "^1.0.0-alpha",
"prompt": "^1.0.0",
"terminal-kit": "^0.25.6",
"travis-ci": "^2.1.1",
"travisci-webhook-handler": "^2.0.0"
},
"settings": {
"robonaut": {
"modulesDir": "robonaut",
"projectFile": "robonaut.json",
"projectFileTemplate": "robonaut.template.json",
"packageJsonTemplate": "package.template.json",
"strap": {
"text": " Robonaut ",
"style": "bgGreen.black.bold"
},
"defaults": {
"textStyle": "white",
"processOptions": {
"stdio": "inherit"
}
}
}
}
}