-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 1.79 KB
/
Copy pathpackage.json
File metadata and controls
72 lines (72 loc) · 1.79 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "mimik_edgedaemon",
"version": "1.1.0",
"swaggerFile": {
"version": "1.1.1",
"account": "mimik",
"name": "edgedaemon"
},
"mimik": {
"type": "edgedaemon"
},
"description": "The purpose of this service is to deploy edge services by fetching from a url and posting on edgeSDK.",
"main": "./src/index.js",
"scripts": {
"lint": "gulp lint",
"docs": "gulp docs",
"pretest": "node ./local/testSetup.js",
"test": "nyc gulp test",
"prestart": "node ./local/setup.js",
"start": "sh server-start.sh",
"commit-ready": "gulp docs; gulp lint; npm run test"
},
"husky": {
"hooks": {
"pre-commit": "gulp docs; gulp lint",
"commit-msg": "node ./local/commitMsgCheck",
"pre-push": "npm run commit-ready"
}
},
"Authors": [
{
"name": "Kevin",
"email": "kevin.toor@mimik.com"
}
],
"license": "MIT",
"keywords": [
"swagger",
"edgedaemon",
"engine"
],
"private": true,
"dependencies": {
"@mimik/cluster": "2.4.0",
"@mimik/configuration": "4.4.8",
"@mimik/init": "3.6.0",
"@mimik/request-helper": "1.7.3",
"@mimik/request-retry": "2.0.6",
"@mimik/response-helper": "2.6.0",
"@mimik/sumologic-winston-logger": "1.6.6",
"@mimik/swagger-helper": "2.5.0",
"@mimik/systeminfo": "2.3.8",
"bluebird": "3.7.2",
"connect": "3.7.0",
"fs-extra": "10.0.0",
"request": "2.88.2",
"uuid": "8.3.2"
},
"devDependencies": {
"@mimik/git-hooks": "~1.5.3",
"@mimik/local": "~4.4.5",
"eslint-config-airbnb": "18.2.1",
"eslint-plugin-import": "2.25.4",
"eslint-plugin-jsx-a11y": "6.5.1",
"eslint-plugin-react": "7.28.0",
"gulp": "4.0.2"
},
"repository": {
"type": "git",
"url": "https://bitbucket.org/mimiktech/edge-daemon"
}
}