-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.2 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
{
"name": "@shapeandshift/shopware-node-sdk",
"version": "1.0.6",
"description": "### Installation:",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"lint": "eslint ./src --ext .ts",
"lint:fix": "npm run lint -- --fix",
"build": "tsc -P ./tsconfig.json",
"prepare": "npm run build"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com:Shape-and-Shift/shopware-node-sdk.git"
},
"keywords": [
"shopware",
"node",
"sdk",
"app",
"api",
"admin"
],
"author": "shapeandshift",
"license": "MIT",
"bugs": {
"url": "https://github.com/Shape-and-Shift/shopware-node-sdk/issues"
},
"homepage": "https://github.com/Shape-and-Shift/shopware-node-sdk",
"devDependencies": {
"@types/lodash": "^4.14.178",
"@types/node": "^17.0.10",
"@types/uuid": "^8.3.4",
"@typescript-eslint/eslint-plugin": "^5.10.1",
"@typescript-eslint/parser": "^5.12.0",
"eslint": "^8.7.0",
"eslint-plugin-import": "^2.25.4",
"prettier": "^2.5.1",
"typescript": "^4.5.4"
},
"dependencies": {
"axios": "^0.24.0",
"lodash": "^4.17.21",
"uuid": "^8.3.2"
},
"directories": {
"example": "examples"
}
}