-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.48 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
{
"name": "bosta",
"version": "0.2.0",
"description": "A Node.js client SDK for Bosta APIs integration.",
"main": "lib/index.js",
"scripts": {
"clean": "rimraf lib",
"transpile": "babel src -d lib",
"test": "mocha './test/*.test.js' --recursive --timeout 100000 --require @babel/register --exit",
"build": "npm-run-all clean transpile test"
},
"type": "module",
"babel": {
"plugins": [
[
"@babel/transform-runtime"
],
"@babel/plugin-proposal-class-properties"
],
"presets": [
"@babel/preset-env"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/bostaapp/bosta-nodejs.git"
},
"keywords": [
"bosta",
"bosta-sdk",
"bosta-api",
"bosta-integration",
"shipping"
],
"author": "Ahmed Elgendy",
"license": "MIT",
"bugs": {
"url": "https://github.com/bostaapp/bosta-nodejs/issues"
},
"homepage": "https://github.com/bostaapp/bosta-nodejs#readme",
"dependencies": {
"@babel/runtime": "^7.11.2",
"axios": "^0.19.2",
"chai": "^4.2.0",
"mocha": "^8.1.3",
"npm-run-all": "^4.1.5",
"rimraf": "^3.0.2"
},
"devDependencies": {
"@babel/cli": "^7.11.6",
"@babel/core": "^7.11.6",
"@babel/plugin-proposal-class-properties": "^7.10.4",
"@babel/plugin-transform-classes": "^7.10.4",
"@babel/plugin-transform-runtime": "^7.11.5",
"@babel/polyfill": "^7.11.5",
"@babel/preset-env": "^7.11.5",
"@babel/register": "^7.11.5"
}
}