-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
51 lines (51 loc) · 1.26 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
{
"name": "magento2-js",
"version": "1.0.7",
"description": "A Node.JS module, which provides an object oriented wrapper for the Magento v2 Rest API.",
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"repository": {
"type": "git",
"url": "git@github.com:brunocordioli072/magento2-js.git"
},
"keywords": [
"magento2",
"REST",
"API"
],
"author": {
"name": "Bruno Cordioli",
"email": "brunocordioli072@gmail.com"
},
"license": "MIT",
"homepage": "https://github.com/brunocordioli072/magento2-js",
"scripts": {
"test": "test",
"lint": "eslint --fix ./src/**/*.ts",
"build": "tsc"
},
"dependencies": {
"@types/node": "^16.4.3",
"crypto": "^1.0.1",
"oauth-1.0a": "^2.2.6",
"request": "^2.88.2",
"request-promise": "^4.2.6",
"winston": "^3.3.3"
},
"devDependencies": {
"@types/request-promise": "^4.1.48",
"@typescript-eslint/eslint-plugin": "^4.28.5",
"@typescript-eslint/parser": "^4.28.5",
"chai": "^3.5.0",
"eslint": "^7.31.0",
"eslint-config-google": "^0.14.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^3.4.0",
"mocha": "^2.4.5",
"prettier": "^2.3.2",
"typescript": "^4.3.5"
},
"files": [
"lib/**/*"
]
}