-
Notifications
You must be signed in to change notification settings - Fork 23
/
package.json
executable file
·92 lines (92 loc) · 2.26 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
{
"name": "generator-mitosis",
"files": [
"generators"
],
"version": "1.0.0-alpha.17",
"description": "A micro services infrastructure yeoman generator based on Kubernetes/Docker Swarm, Elastic Stack, Ansible, Jenkins, Kafka, Spark Streaming... It allows developers to load, organize, execute, evolve, administrate and stop micro-services using few mitosis commands lines.",
"main": "index.js",
"scripts": {
"commit-msg": "validate-commit-msg",
"coverage": "istanbul cover ./node_modules/mocha/bin/_mocha --report lcovonly -- -R spec && codecov",
"lint": "eslint .",
"lint-fix": "npm run lint -- --fix",
"precommit": "npm run lint",
"prepush": "npm run lint",
"precoverage": "npm run lint",
"test": "npm run test:unit -- test/*.spec.js",
"test:unit": "mocha --timeout 20000 --slow 0 --reporter spec"
},
"repository": {
"type": "git",
"url": "git+https://github.com/NirbyApp/generator-mitosis.git"
},
"keywords": [
"yeoman-generator",
"VAGRANT",
"ANSIBLE",
"DOCKER",
"KUBERNETES",
"TRAEFIK",
"CONSUL",
"ETCD",
"SWARM",
"JAVA",
"ANGULAR",
"KAFKA",
"SPRING",
"NODEJS",
"TOMCAT",
"GRADLE",
"MONGODB",
"REDIS",
"IOT",
"RASPBERRY",
"MATERIAL",
"JENKINS",
"SONARQUBE",
"ARTIFACTORY",
"CLOUD",
"UBUNTU",
"CENTOS",
"COREOS",
"AKKA_ACTORS",
"X-PACK"
],
"author": {
"name": "Nirby",
"email": "",
"url": "https://nirbyapp.com"
},
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/NirbyApp/generator-mitosis/issues"
},
"homepage": "https://github.com/NirbyApp/generator-mitosis#readme",
"dependencies": {
"chalk": "2.4.1",
"date-util": "1.2.1",
"lodash": "4.17.10",
"shelljs": "0.8.2",
"uuid": "3.3.2",
"yeoman-generator": "1.1.1",
"yosay": "2.0.2"
},
"devDependencies": {
"codecov": "2.3.0",
"eslint": "4.4.1",
"eslint-config-airbnb-base": "11.3.1",
"eslint-plugin-import": "2.7.0",
"fs-extra": "4.0.1",
"husky": "0.14.3",
"istanbul": "0.4.5",
"mocha": "3.5.0",
"validate-commit-msg": "2.14.0",
"yeoman-assert": "3.0.0",
"yeoman-test": "1.7.0"
},
"engines": {
"node": ">=4.4.0",
"npm": ">=2.14.2"
}
}