-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 2.55 KB
/
Copy pathpackage.json
File metadata and controls
78 lines (78 loc) · 2.55 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
{
"name": "@voucherify/sdk",
"version": "3.0.3",
"description": "Voucherify promotion engine REST API. Please see https://docs.voucherify.io/docs for more details.",
"license": "MIT",
"main": "dist/index.js",
"module": "dist/index.esm.js",
"types": "dist/types/index.d.ts",
"scripts": {
"build:types": "tsc",
"build:js": "rollup -c rollup.config.js",
"build": "npm run build:types && npm run build:js",
"prepare": "npm run build",
"test": "npm run format:test && mocha --require @babel/register --timeout 15000 --recursive",
"format:test": "prettier --write \"test/**/*.js\"",
"lint": "eslint src test",
"lint:fix": "eslint src test --fix"
},
"bugs": {
"url": "https://github.com/voucherifyio/voucherify-js-sdk/issues",
"email": "support@voucherify.io"
},
"keywords": [
"Voucherify"
],
"browser": {
"fs": false,
"os": false,
"path": false
},
"repository": {
"type": "git",
"url": "git+https://github.com/voucherifyio/voucherify-js-sdk.git"
},
"dependencies": {
"@babel/cli": "7.28.3",
"qs": "6.15.1",
"superagent": "10.2.3"
},
"devDependencies": {
"@babel/core": "7.28.3",
"@babel/plugin-proposal-class-properties": "7.18.6",
"@babel/plugin-proposal-decorators": "7.28.0",
"@babel/plugin-proposal-do-expressions": "7.28.3",
"@babel/plugin-proposal-export-default-from": "7.27.1",
"@babel/plugin-proposal-export-namespace-from": "7.18.9",
"@babel/plugin-proposal-function-bind": "7.27.1",
"@babel/plugin-proposal-function-sent": "7.27.1",
"@babel/plugin-proposal-json-strings": "7.18.6",
"@babel/plugin-proposal-logical-assignment-operators": "7.20.7",
"@babel/plugin-proposal-nullish-coalescing-operator": "7.18.6",
"@babel/plugin-proposal-numeric-separator": "7.18.6",
"@babel/plugin-proposal-optional-chaining": "7.21.0",
"@babel/plugin-proposal-pipeline-operator": "7.27.1",
"@babel/plugin-proposal-throw-expressions": "7.27.1",
"@babel/plugin-syntax-dynamic-import": "7.8.3",
"@babel/plugin-syntax-import-meta": "7.10.4",
"@babel/preset-env": "7.28.3",
"@babel/register": "7.28.3",
"@eslint/js": "9.37.0",
"@rollup/plugin-babel": "6.1.0",
"@rollup/plugin-node-resolve": "16.0.3",
"@rollup/plugin-commonjs": "28.0.8",
"@rollup/plugin-json": "6.1.0",
"dotenv": "16.4.7",
"eslint": "9.37.0",
"eslint-plugin-jsdoc": "61.1.4",
"expect.js": "0.3.1",
"mocha": "11.7.4",
"prettier": "3.4.2",
"rollup": "4.59.0"
},
"files": [
"dist",
"README.md",
"docs"
]
}