-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
36 lines (36 loc) · 1.02 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
{
"name": "moyasar",
"version": "0.5.3",
"description": "Moyasar node SDK",
"main": "lib/moyasar.js",
"scripts": {
"prepare": "./node_modules/.bin/babel src -d lib",
"build": "./node_modules/.bin/babel src -d lib",
"shell": "nodemon src/shell.js --exec babel-node",
"test": "mocha --require babel-core/register",
"test:watch": "mocha --require babel-core/register --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/moyasar/moyasar-node.git"
},
"author": "Abdullah Dahmash",
"license": "MIT",
"bugs": {
"url": "https://github.com/moyasar/moyasar-node/issues"
},
"homepage": "https://github.com/moyasar/moyasar-node#readme",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-plugin-add-module-exports": "^1.0.2",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"babel-register": "^6.26.0",
"mocha": "^8.0.1",
"nock": "^13.0.2"
},
"dependencies": {
"request": "^2.88.2",
"request-promise": "^4.2.5"
}
}