forked from americanexpress/targeted-offers-client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.13 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
{
"name": "@americanexpress/targeted-offers-client",
"version": "1.0.0",
"description": "SDK for Amex Targeted offers API",
"main": "index.js",
"private": "true",
"scripts": {
"test": "jest --coverage",
"lint": "time ./node_modules/.bin/eslint \"./**/*.js\""
},
"keywords": [
"Amex",
"rest",
"api",
"sdk",
"targeted",
"offers"
],
"repository": {
"type": "",
"url": ""
},
"author": "Sudhakar Meduri <[email protected]> (https://github.com/smedur)",
"license": "Apache-2.0",
"dependencies": {
"dotenv": "^8.0.0",
"eslint-plugin-node": "^9.1.0",
"fs": "0.0.1-security",
"https-proxy-agent": "^2.2.2",
"lodash": "^4.17.15",
"node-cache": "^4.2.1",
"node-fetch": "^2.6.7",
"node-jose": "^1.1.3",
"request": "^2.88.0",
"request-promise": "^4.2.4"
},
"pre-commit": [
"lint"
],
"devDependencies": {
"eslint": "^3.3.0",
"eslint-config-prettier": "^6.0.0",
"eslint-loader": "^1.9.0",
"eslint-plugin-prettier": "^3.1.0",
"eslint-plugin-react": "^6.9.0",
"jest": "^24.7.1"
},
"engines": {
"node": ">=6.0.0"
}
}