-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
60 lines (60 loc) · 1.41 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
{
"name": "magento-api-rest",
"version": "2.0.5",
"description": "A NodeJS wrapper to work with Magento REST APIs.",
"main": "index",
"types": "index.d.ts",
"files": [
"index.js",
"index.mjs",
"index.d.ts",
"/lib/parser.js",
"/lib/transform.js"
],
"scripts": {
"build": "babel index.mjs --out-dir .",
"prepare": "npm run build",
"test": "mocha --require @babel/register './**/*.spec.js'",
"coverage": "nyc npm run test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/aaditya/magento-api-rest.git"
},
"keywords": [
"Magento",
"Magento2",
"eCommerce",
"REST",
"API",
"JS",
"NodeJS",
"Javascript",
"JSON"
],
"author": "Aaditya Chakravarty",
"license": "MIT",
"bugs": {
"url": "https://github.com/aaditya/magento-api-rest/issues"
},
"homepage": "https://github.com/aaditya/magento-api-rest#readme",
"dependencies": {
"axios": "^0.21.1",
"oauth-1.0a": "^2.2.6"
},
"devDependencies": {
"@babel/cli": "^7.12.10",
"@babel/core": "^7.12.10",
"@babel/plugin-transform-modules-commonjs": "^7.12.1",
"@babel/preset-env": "^7.12.11",
"@babel/register": "^7.12.10",
"chai": "^4.2.0",
"mocha": "^6.2.3",
"moxios": "^0.4.0",
"nyc": "^15.1.0",
"sinon": "^9.2.3"
},
"engines": {
"node": ">=8.0.0"
}
}