This repository was archived by the owner on Feb 28, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
85 lines (85 loc) · 3.19 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
{
"name": "generator-ibm-java",
"version": "5.15.1",
"description": "Java code generation and modification",
"license": "Apache-2.0",
"main": "index.js",
"files": [
"generators",
"lib"
],
"dependencies": {
"extend": "^3.0.1",
"generator-ibm-cloud-enablement": "1.8.1",
"generator-ibm-service-enablement": "3.4.9",
"generator-ibm-usecase-enablement": "3.2.8",
"escape-string-regexp": "^1.0.5",
"handlebars": "^4.0.11",
"yeoman-assert": "^2.2.2",
"yeoman-generator": "^3.1.1",
"bluebird": "^3.5.2",
"request": "^2.88.0",
"unzip2": "^0.2.5",
"common-codegen-tests": "2.2.3"
},
"devDependencies": {
"common-codegen-tests": "2.2.3",
"coveralls": "^3.0.1",
"eslint": "^4.19.1",
"eslint-plugin-ejs": "0.0.2",
"fs-extra": "^7.0.0",
"js-yaml": "^3.13.0",
"mocha": "^5.2.0",
"mocha-multi-reporters": "^1.1.7",
"nyc": "^13.3.0",
"standard-version": "^4.4.0",
"xunit-file": "^1.0.0",
"yeoman-test": "^2.0.0"
},
"scripts": {
"test": "nyc --reporter=lcov mocha test/unit/* --reporter mocha-multi-reporters --reporter-options configFile=config.json",
"testforinsights": "nyc --reporter=lcov mocha test/unit/* test/integration/* test/common/* test/endToEnd/* --reporter mocha-multi-reporters --reporter-options configFile=config.json",
"testint": "nyc mocha test/integration/*",
"teste2e": "nyc mocha test/endToEnd/*",
"testenable": "nyc mocha test/integration/generator.enable.test.js",
"testblank": "nyc mocha test/integration/generator.blank.test.js",
"testbasicweb": "nyc mocha test/integration/generator.basicweb.test.js",
"testdefaults": "nyc mocha test/integration/generator.defaults.test.js",
"testms": "nyc mocha test/integration/generator.microservice.test.js",
"testbff": "nyc mocha test/integration/generator.bff.test.js",
"testtech": "nyc mocha test/integration/generator.technologies.test.js",
"testskit": "nyc mocha test/integration/generator.skit.test.js",
"testblanke2e": "nyc mocha test/endToEnd/generator.blank.e2e.test.js",
"testbasicwebe2e": "nyc mocha test/endToEnd/generator.basicweb.e2e.test.js",
"testbffe2e": "nyc mocha test/endToEnd/generator.bff.e2e.test.js",
"testmse2e": "nyc mocha test/endToEnd/generator.microservice.e2e.test.js",
"testteche2e": "nyc mocha test/endToEnd/generator.technologies.e2e.test.js",
"testcommon": "nyc mocha test/common/*",
"mocha": "nyc --reporter=lcov mocha test/unit/* --reporter mocha-multi-reporters --reporter-options configFile=config.json",
"lint": "eslint .",
"coveralls": "nyc report --reporter=text-lcov | coveralls",
"prerelease": "nyc mocha test/endToEnd/generator.blank.e2e.test.js",
"release": "standard-version",
"install_linked_dependencies": "node ./install_linked_dependencies",
"update_linked_dependencies": "node ./update_linked_dependencies"
},
"repository": {
"type": "git",
"url": "https://github.com/ibm-developer/generator-ibm-java"
},
"keywords": [
"arf",
"java",
"codegen",
"yeoman",
"generator",
"YaaS"
],
"contributors": [
"Adam Pilkington",
"Kate Stanley",
"Erin Schnabel",
"Quan Vo",
"Paul Bennett"
]
}