-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
85 lines (85 loc) · 2.41 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
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
85
{
"name": "skyflow-node",
"version": "1.14.1",
"description": "Skyflow SDK for Node.js",
"main": "./lib/index.js",
"module": "./lib/index.js",
"scripts": {
"test": "jest --coverage",
"build": "tsc",
"eslint": "eslint '**/*.js' --max-warnings 0",
"prettier": "prettier --list-different '**/*.{js,ts}'",
"lint": "npm run prettier && npm run eslint",
"lint-fix": "prettier --write '**/*.{js,ts}' && eslint --fix '**/*.js'",
"docs-gen": "typedoc && node scripts/docs-script/markdown-gen.js && npx ts-node scripts/docs-script/processMarkdown.ts"
},
"repository": {
"type": "git",
"url": "https://github.com/skyflowapi/skyflow-node-sdk.git"
},
"browser": {
"child_process": false
},
"author": "",
"license": "MIT",
"keywords": [
"skyflow",
"privacy",
"api",
"security",
"vault",
"PII",
"tokenization"
],
"dependencies": {
"@babel/generator": "^7.17.9",
"@babel/parser": "^7.17.9",
"axios": "1.7.4",
"Base64": "^1.0.1",
"core-js": "^3.19.0",
"esm": "^3.2.25",
"form-data": "^4.0.0",
"jsonwebtoken": "^9.0.0",
"jwt-decode": "^2.2.0",
"promise.allsettled": "^1.0.5",
"qs": "^6.10.3"
},
"devDependencies": {
"@babel/cli": "^7.0.0",
"@babel/core": "^7.23.2",
"@babel/plugin-proposal-class-properties": "^7.10.1",
"@babel/plugin-proposal-decorators": "^7.10.1",
"@babel/plugin-proposal-object-rest-spread": "^7.10.1",
"@babel/plugin-transform-object-assign": "^7.0.0",
"@babel/plugin-transform-runtime": "^7.10.1",
"@babel/preset-env": "^7.9.6",
"@babel/preset-typescript": "^7.10.1",
"@babel/register": "^7.0.0",
"@babel/runtime": "^7.10.2",
"@types/axios": "^0.14.0",
"@types/form-data": "^2.5.0",
"@types/jsonwebtoken": "^9.0.0",
"@types/jwt-decode": "^3.1.0",
"@types/node": "^16.11.7",
"@types/qs": "^6.9.7",
"babel-loader": "^8.0.0",
"chai": "^4.1.2",
"crypto-browserify": "^3.12.0",
"eslint": "^8.12.0",
"eslint-plugin-sonarjs": "^0.13.0",
"expect.js": "^0.3.1",
"husky": "^1.3.1",
"istanbul": "^0.4.5",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"jsdoc": "^4.0.2",
"json-loader": "~0.5.4",
"nodemon": "^3.0.1",
"null-loader": "^0.1.1",
"nyc": "^15.1.0",
"prettier": "^1.13.7",
"typescript": "^4.4.4",
"typedoc": "^0.24.4",
"typedoc-plugin-markdown": "^3.15.1"
}
}