-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
50 lines (50 loc) · 1.08 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": "sfcc-webdav",
"version": "1.2.0",
"description": "Salesforce Commerce Cloud simple webdav API",
"keywords": [
"Salesforce Commerce Cloud",
"Demandware"
],
"repository": {
"type": "git",
"url": "https://github.com/openmindlab/sfcc-webdav.git"
},
"bugs": {
"url": "https://github.com/openmindlab/sfcc-webdav/issues"
},
"main": "./dist/webdav.js",
"types": "./dist/webdav.d.ts",
"license": "MIT",
"author": {
"name": "Fabrizio Giustina"
},
"engines": {
"node": ">=10.0.0"
},
"scripts": {
"build": "tsc",
"postversion": "git push && git push --tags",
"prepare": "npm run build"
},
"files": [
"dist/**/*",
"README.md",
"LICENSE",
"CHANGELOG.md"
],
"dependencies": {
"@types/node": "18.7.9",
"axios": "0.27.2",
"byte-size": "8.1.0",
"picocolors": "1.0.0"
},
"devDependencies": {
"@types/byte-size": "8.1.0",
"eslint": "8.22.0",
"eslint-config-airbnb-base": "15.0.0",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-import": "2.26.0",
"typescript": "4.7.4"
}
}