-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 2.11 KB
/
package.json
File metadata and controls
84 lines (84 loc) · 2.11 KB
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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"name": "greensms",
"version": "1.9.2",
"description": "GREENSMS API: SMS, Call, Voice, VK, WhatsApp, Viber, HLR, Pay",
"main": "dist/index.cjs.js",
"module": "dist/index.esm.js",
"browser": "dist/index.umd.js",
"directories": {
"example": "examples",
"lib": "lib"
},
"files": [
"dist",
"lib"
],
"engines": {
"node": ">=12"
},
"scripts": {
"_watch": "rollup -c -w",
"_lint_global": "jshint ./lib",
"_lint": "node ./node_modules/jshint/dist/jshint.js ./lib",
"_jsdoc": "node ./node_modules/jsdoc/jsdoc.js -c jsdoc.conf.json",
"coverage": "nyc report --reporter=text-lcov | coveralls",
"test": "cross-env GREENSMS_USER=test GREENSMS_PASS=test nyc mocha --timeout 10000"
},
"repository": {
"type": "git",
"url": "git+https://github.com/greensms-ru/greensms-node.git"
},
"keywords": [
"greensms",
"sms",
"rest",
"api"
],
"author": "GREENSMS",
"license": "MIT",
"bugs": {
"url": "https://github.com/greensms-ru/greensms-node/issues"
},
"homepage": "https://github.com/greensms-ru/greensms-node#readme",
"dependencies": {
"axios": "1.2.1",
"humps": "2.0.1",
"jsonschema": "1.4.1",
"qs": "6.11.0",
"urijs": "1.19.11",
"yup": "0.32.11"
},
"types": "./dist/index.d.ts",
"devDependencies": {
"@babel/core": "7.12.3",
"@babel/eslint-parser": "7.12.1",
"@babel/preset-env": "7.12.1",
"@rollup/plugin-babel": "5.2.1",
"@rollup/plugin-commonjs": "15.1.0",
"@rollup/plugin-node-resolve": "9.0.0",
"chai": "4.3.7",
"chai-as-promised": "7.1.1",
"coveralls": "3.1.1",
"cross-env": "7.0.3",
"dotenv": "16.0.3",
"eslint": "7.11.0",
"jsdoc": "4.0.0",
"jshint": "2.13.6",
"mocha": "10.2.0",
"nyc": "15.1.0",
"rollup": "2.32.0",
"rollup-plugin-dts": "1.4.13",
"rollup-plugin-eslint": "7.0.0",
"rollup-plugin-filesize": "9.0.2",
"rollup-plugin-terser": "7.0.2",
"supertest": "6.3.3",
"typescript": "4.9.4"
},
"settings": {
"moduleName": "greensms",
"minify": false
},
"optionalDependencies": {
"fsevents": "2.1.3"
}
}