This repository has been archived by the owner on Feb 28, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathpackage.json
executable file
·64 lines (64 loc) · 1.9 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
{
"name": "generator-ibm-service-enablement",
"version": "3.5.7",
"description": "This generator adds Service enablement to applications",
"main": "generators/app/index.js",
"files": [
"generators"
],
"keywords": [
"yeoman-generator"
],
"scripts": {
"lint": "eslint .",
"test": "npm run lint && nyc mocha test/app-*",
"testgo": "mocha test/app-golang-test.js",
"testjava": "mocha test/app-java-test.js",
"testnode": "mocha test/app-node-express-test.js",
"testpython": "mocha test/app-python-flask-test.js",
"testswift": "mocha test/app-swift-kitura-test.js",
"testservices": "mocha test/app-services-*.js",
"coveralls": "nyc report --reporter=text-lcov | coveralls",
"integration": "mocha test/integration-*",
"testlib": "mocha test/app-lib-test.js",
"testinsights": "mocha test/app-* --reporter mocha-multi-reporters --reporter-options configFile=config.json",
"version": "standard-version"
},
"repository": {
"type": "git",
"url": "https://github.com/ibm-developer/generator-ibm-service-enablement.git"
},
"author": "IBM",
"license": "Apache-2.0",
"dependencies": {
"handlebars": "^4.5.3",
"js-yaml": "^3.13.1",
"jsdom": "^15.1.1",
"lodash": "^4.17.15",
"log4js": "^4.0.2",
"prettify-xml": "^1.2.0",
"xmlserializer": "^0.6.1",
"yeoman-generator": "^4.5.0"
},
"devDependencies": {
"axios": "^0.18.1",
"chai": "^4.2.0",
"cors": "^2.8.5",
"coveralls": "^3.0.2",
"ejs": "^2.6.1",
"eslint": "^5.14.1",
"eslint-plugin-ejs": "0.0.2",
"fs-extra": "^7.0.1",
"http-proxy": "^1.17.0",
"mem-fs-editor": "^5.1.0",
"mocha": "^6.2.0",
"mocha-multi": "^1.0.1",
"mocha-multi-reporters": "^1.1.7",
"nyc": "^14.1.1",
"request-promise": "^4.2.4",
"standard-version": "^5.0.0",
"yeoman-assert": "^3.1.1",
"yeoman-test": "^1.9.1",
"yo": "^3.1.1"
}
}