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 19
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·49 lines (49 loc) · 1.37 KB
/
package.json
File metadata and controls
executable file
·49 lines (49 loc) · 1.37 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
{
"name": "generator-nodeserver",
"version": "1.3.11",
"description": "Generates a nodeserver project.",
"main": "generators/app/index.js",
"license": "Apache-2.0",
"engines": {
"node": ">= 6.0.0"
},
"files": [
"generators"
],
"keywords": [
"yeoman-generator"
],
"dependencies": {
"fs-extra": "^7.0.0",
"generator-ibm-cloud-enablement": "^1.7.11",
"generator-ibm-core-node-express": "^3.1.2",
"generator-ibm-service-enablement": "^3.3.2",
"generator-ibm-web": "^1.4.10",
"handlebars": "^4.4.3",
"js-yaml": "^3.13.1",
"lodash": "^4.17.15",
"log4js": "^3.0.5",
"yeoman-generator": "^3.2.0"
},
"scripts": {
"test": "npm run lint && npm run mocha",
"lint": "eslint .",
"mocha": "nyc --reporter=lcov mocha --reporter mocha-multi-reporters --reporter-options configFile=config.json",
"testinsights": "npm run mocha",
"version": "standard-version",
"coveralls": "nyc report --reporter=text-lcov | coveralls"
},
"devDependencies": {
"coveralls": "^3.0.3",
"eslint": "^5.15.3",
"eslint-plugin-ejs": "0.0.2",
"mocha": "^5.2.0",
"mocha-multi-reporters": "^1.1.7",
"nyc": "^14.1.1",
"standard-version": "^4.4.0",
"xunit-file": "^1.0.0",
"yeoman-assert": "^3.1.1",
"yeoman-test": "^1.9.1"
},
"repository": "https://github.com/ibm-developer/generator-nodeserver"
}