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 21
/
Copy pathpackage.json
64 lines (64 loc) · 2 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-swiftserver",
"version": "5.15.1",
"description": "Generator for Kitura REST webservice servers",
"main": "app/index.js",
"scripts": {
"test": "standard --env mocha && mocha 'test/unit/**/*.js'",
"testint": "standard --env mocha && mocha 'test/integration/**/*.js'",
"testintfast": "standard --env mocha && mocha 'test/integration/**/*nobuild*.js'",
"mocha": "nyc --reporter=lcov mocha 'test/unit/**/*.js' --reporter mocha-multi-reporters --reporter-options configFile=config.json",
"coverage": "standard --env mocha && nyc mocha --grep @full --invert 'test/unit/**/*.js' 'test/integration/**/*.js'",
"report-coverage": "nyc report --reporter=lcov > coverage.lcov && codecov"
},
"repository": {
"type": "git",
"url": "git+https://github.com/IBM-Swift/generator-swiftserver.git"
},
"keywords": [
"yeoman-generator",
"swift",
"kitura",
"swiftserver",
"generator"
],
"dependencies": {
"chalk": "^2.1.0",
"debug": "^3.0.0",
"generator-ibm-cloud-enablement": "1.9.4",
"generator-ibm-service-enablement": "3.4.0",
"generator-ibm-usecase-enablement": "^3.2.8",
"handlebars": "^4.1.2",
"ibm-openapi-support": "^0.0.12",
"js-yaml": "^3.13.1",
"yeoman-generator": "^1.1.1"
},
"devDependencies": {
"codecov": "^3.0.0",
"istanbul": "^0.4.5",
"makeshift": "^1.1.0",
"mem-fs": "^1.1.3",
"mem-fs-editor": "^4.0.0",
"mkdirp": "^0.5.1",
"mocha": "^5.0.0",
"mocha-multi-reporters": "^1.1.7",
"nock": "^9.3.0",
"nyc": "^14.1.1",
"standard": "^10.0.3",
"standard-version": "^4.4.0",
"xunit-file": "^1.0.0",
"yeoman-assert": "^3.0.0",
"yeoman-test": "1.6.0"
},
"standard": {
"ignore": [
"refresh/templates/common/swagger-ui/**/*"
]
},
"author": "christiancompton",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/IBM-Swift/generator-swiftserver/issues"
},
"homepage": "https://github.com/IBM-Swift/generator-swiftserver#readme"
}