forked from ibm-developer/generator-ibm-cloud-enablement
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·41 lines (41 loc) · 1.13 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
{
"name": "generator-ibm-cloud-enablement",
"version": "0.4.1",
"description": "This generator adds IBM Cloud enablement to applications",
"main": "generators/app/index.js",
"license": "Apache-2.0",
"files": [
"generators"
],
"keywords": [
"yeoman-generator"
],
"scripts": {
"test": "npm run lint && npm run mocha",
"testcf": "npm run mocha test/test-cloudfoundry.js",
"testdocker": "npm run mocha test/test-dockertools.js",
"testkube": "npm run mocha test/test-kubernetes.js",
"testdeploy": "npm run mocha test/test-deployment.js",
"lint": "eslint .",
"mocha": "nyc mocha --recursive",
"coveralls": "nyc report --reporter=text-lcov | coveralls",
"version": "standard-version"
},
"dependencies": {
"fs-extra": "^2.0.0",
"handlebars": "^4.0.10",
"js-yaml": "^3.9.0",
"lodash": "^4.17.4",
"yeoman-generator": "^1.1.0"
},
"devDependencies": {
"coveralls": "^2.13.1",
"eslint": "^3.1.1",
"eslint-plugin-ejs": "0.0.2",
"mocha": "^3.2.0",
"nyc": "^10.3.0",
"standard-version": "^4.2.0",
"yeoman-assert": "^2.2.2",
"yeoman-test": "^1.6.0"
}
}