-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
109 lines (109 loc) · 2.75 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
{
"name": "@shopgate/platform-sdk",
"version": "1.12.0-beta.1",
"description": "Shopgate's Platform SDK",
"main": "index.js",
"scripts": {
"test": "mocha",
"cover": "nyc mocha",
"lint": "standard",
"lint-staged": "lint-staged",
"check": "check-audit"
},
"lint-staged": {
"*.js": "npm run lint"
},
"repository": {
"type": "git",
"url": "https://github.com/shopgate/cloud-sdk.git"
},
"bin": {
"sgcloud": "./bin/sgcloud",
"sgconnect": "./bin/sgcloud"
},
"keywords": [
"shopgate",
"cloud",
"sdk"
],
"contributors": [
"Pascal Vomhoff <[email protected] (https://github.com/pvomhoff)",
"Steffen Zull <[email protected]> (https://github.com/szll)",
"Timo Ebel <[email protected]> (https://github.com/Rekhyt)",
"Florian Müller <[email protected]> (https://github.com/devbucket)",
"Philipp Heyse <[email protected]> (https://github.com/philipp-heyse)",
"Patrick Schneider <[email protected]> (https://github.com/DocSnyderOnGithub)"
],
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/shopgate/cloud-sdk/issues"
},
"homepage": "https://github.com/shopgate/cloud-sdk",
"standard": {
"env": [
"mocha"
],
"ignore": [
"test/app/backend/extensionRuntime/fakeSteps"
]
},
"dependencies": {
"@shopgate/extension-config-validator": "1.4.3",
"ansicolors": "0.3.2",
"ansistyles": "0.1.3",
"async": "2.6.3",
"bunyan": "1.8.12",
"caporal": "1.3.0",
"chalk": "2.4.2",
"chokidar": "3.2.1",
"convict": "^6.0.1",
"dotenv": "6.2.0",
"errio": "1.2.2",
"fs-extra": "4.0.3",
"glob": "7.1.4",
"inquirer": "6.5.2",
"jsonlint": "1.6.3",
"longjohn": "0.2.12",
"messageformat": "2.3.0",
"micromatch": "3.1.10",
"morgan": "1.9.1",
"neo-async": "2.6.1",
"os-locale": "2.1.0",
"parse-gitignore": "1.0.1",
"replace-in-file": "3.4.4",
"request": "2.88.0",
"request-promise-native": "1.0.7",
"restify": "11.1.0",
"restify-cors-middleware2": "^2.1.2",
"semver": "5.7.1",
"socket.io-client": "^2.4.0",
"tar-fs": "1.16.3",
"unzipper": "0.9.15",
"update-notifier": "3.0.1",
"uuid": "3.3.3"
},
"devDependencies": {
"chai": "4.2.0",
"chai-things": "0.2.0",
"coveralls": "3.0.6",
"lint-staged": "8.2.1",
"mocha": "5.2.0",
"mock-stdin": "0.3.1",
"nock": "9.1.6",
"npm-audit-resolver": "^2.2.1",
"nyc": "14.1.1",
"portfinder": "1.0.24",
"pre-commit": "1.2.2",
"proxyquire": "1.8.0",
"sinon": "7.5.0",
"socket.io": "2.3.0",
"standard": "10.0.3"
},
"engines": {
"node": ">= 8.4.0"
},
"pre-commit": [
"lint-staged",
"test"
]
}