forked from ibm-developer/generator-ibm-service-enablement
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.4 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
{
"name": "generator-ibm-service-enablement",
"version": "0.2.0",
"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-*",
"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",
"coveralls": "nyc report --reporter=text-lcov | coveralls",
"integration": "mocha test/integration-*",
"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.0.10",
"log4js": "^1.1.1",
"yeoman-generator": "^1.1.1",
"lodash": "^4.17.4"
},
"devDependencies": {
"axios": "^0.16.2",
"chai": "^4.0.2",
"cors": "^2.8.4",
"coveralls": "^2.13.1",
"eslint": "^4.2.0",
"eslint-plugin-ejs": "0.0.2",
"fs-extra": "^4.0.1",
"http-proxy": "^1.16.2",
"mocha": "^3.4.2",
"nyc": "^11.0.2",
"request-promise": "^4.2.1",
"standard-version": "^4.2.0",
"yeoman-assert": "^3.0.0",
"yeoman-test": "^1.7.0"
}
}