-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
72 lines (72 loc) · 2.46 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
65
66
67
68
69
70
71
72
{
"name": "@nec-baas/cli",
"version": "7.0.0",
"description": "NEC Mobile Backend Platform Command Line Interface",
"author": "NEC Corporation",
"license": "MIT",
"homepage": "https://github.com/nec-baas/baas-cli",
"keywords": [
"nec",
"baas",
"iot",
"mobile",
"internet of things",
"backend",
"api gateway",
"serverless"
],
"main": "./bin/index.js",
"bin": {
"nebula": "./bin/nebula.js",
"nebula-create-api": "./bin/nebula-create-api.js",
"nebula-create-apis": "./bin/nebula-create-apis.js",
"nebula-create-code": "./bin/nebula-create-code.js",
"nebula-create-function": "./bin/nebula-create-function.js",
"nebula-create-user": "./bin/nebula-create-user.js",
"nebula-delete-api": "./bin/nebula-delete-api.js",
"nebula-delete-code": "./bin/nebula-delete-code.js",
"nebula-delete-function": "./bin/nebula-delete-function.js",
"nebula-delete-user": "./bin/nebula-delete-user.js",
"nebula-export-functions": "./bin/nebula-export-functions.js",
"nebula-get-api": "./bin/nebula-get-api.js",
"nebula-get-code": "./bin/nebula-get-code.js",
"nebula-get-function": "./bin/nebula-get-function.js",
"nebula-logic-log": "./bin/nebula-logic-log.js",
"nebula-system-log": "./bin/nebula-system-log.js",
"nebula-import-functions": "./bin/nebula-import-functions.js",
"nebula-init-config": "./bin/nebula-init-config.js",
"nebula-list-apis": "./bin/nebula-list-apis.js",
"nebula-list-code": "./bin/nebula-list-code.js",
"nebula-query-users": "./bin/nebula-query-users.js",
"nebula-update-code": "./bin/nebula-update-code.js"
},
"scripts": {
"test": "mocha test/**/*.js",
"ft": "mocha functionTest/*.js functionTest/**/*.js",
"cover": "./node_modules/.bin/istanbul cover --config=istanbul.yml ./node_modules/.bin/_mocha test/**/*.js",
"lint": "eslint bin lib",
"test-jenkins": "./node_modules/.bin/istanbul cover --config=istanbul-jenkins.yml ./node_modules/.bin/_mocha test/**/*.js -- --reporter mocha-junit-reporter"
},
"files": [
"bin",
"lib",
"extlib"
],
"dependencies": {
"@nec-baas/jssdk": "~7.0.2",
"commander": "^2.9.0",
"js-yaml": "^3.6.1",
"lodash": "^4.15.0",
"readline-sync": "^1.4.4"
},
"devDependencies": {
"chai": "^4.1.2",
"eslint": "^4.18.2",
"istanbul": "^0.4.5",
"lodash": "^4.13.1",
"mocha": "^5.0.3",
"sinon": "^4.4.2",
"mongod": "^2.0.0",
"mocha-junit-reporter": "^1.12.1"
}
}