forked from CESARBR/knot-cloud
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.53 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
{
"name": "@cesarbr/knot-cloud",
"version": "2.0.0",
"description": "KNoT Cloud CLI",
"contributors": [
"Thiago Cardoso <[email protected]>",
"Paulo Serra Filho <[email protected]>",
"Ramon Ribeiro <[email protected]>",
"Joao Alexandre Neto <[email protected]>"
],
"main": "./build/index.js",
"bin": {
"knot-cloud": "./build/index.js"
},
"scripts": {
"build": "babel src --out-dir build && gulp",
"lint": "eslint ./src",
"prepublishOnly": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/CESARBR/knot-cloud.git"
},
"keywords": [
"IoT",
"Cloud"
],
"author": "KNoT",
"license": "MIT",
"bugs": {
"url": "https://github.com/CESARBR/knot-cloud/issues"
},
"homepage": "https://github.com/CESARBR/knot-cloud#readme",
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.5.5",
"@babel/node": "^7.5.5",
"@babel/preset-env": "^7.5.5",
"babel-plugin-module-resolver": "^3.2.0",
"eslint": "^5.3.0",
"eslint-config-airbnb-base": "^13.2.0",
"eslint-import-resolver-babel-module": "^5.1.0",
"eslint-plugin-import": "^2.18.2",
"gulp": "^4.0.2",
"pre-commit": "^1.2.2"
},
"pre-commit": [
"lint"
],
"dependencies": {
"@cesarbr/knot-cloud-sdk-js": "^2.1.0",
"chalk": "^4.0.0",
"colors": "^1.3.3",
"fs-extra": "^7.0.1",
"git-clone": "^0.1.0",
"is-base64": "^0.1.0",
"jsonwebtoken": "^8.5.1",
"prompt": "^1.0.0",
"yargs": "^13.3.0"
}
}