-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
99 lines (99 loc) · 3.45 KB
/
package.json
File metadata and controls
99 lines (99 loc) · 3.45 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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
{
"name": "@sassoftware/restaf",
"version": "5.7.1",
"description": "Library for writing SAS Viya application using REST APIs",
"author": "Deva Kumaraswamy <deva.kumar@sas.com>",
"license": "Apache-2.0",
"keywords": [
"restaf",
"SAS",
"Viya",
"REST API"
],
"unpkg": "/dist/restaf.umd.js",
"main": "./lib/restaf.js",
"modules": "/dist/restaf.umd.js",
"browser": "/dist/restaf.umd.js",
"files": [
"lib",
"dist"
],
"private": true,
"workspaces": {
"packages": [
"packages/*"
]
},
"browserslist": [
"defaults and fully supports es6-module",
"maintained node versions"
],
"repository": "https://github.com/sassoftware/restaf.git",
"bugs": {
"url": "https://github.com/sassoftware/restaf/issues"
},
"scripts": {
"test": "cd ./packages/tests && cross-env NODE_TLS_REJECT_UNAUTHORIZED=0 node",
"testj": "cd ./packages/tests && cross-env NODE_TLS_REJECT_UNAUTHORIZED=0 node",
"debug": "cd ./packages/tests && cross-env NODE_TLS_REJECT_UNAUTHORIZED=0 node --inspect-brk",
"build": "npm run build --workspaces --if-present",
"puball": "npm run pub --workspaces --if-present",
"format": "prettier-eslint --eslint-config-path ./.eslintrc.json --write '**/*.js'",
"lint": "eslint . --ext .js --fix",
"dlink": "npm run dlink --workspaces --if-present",
"bump": "npm version patch && npm version patch --workspaces --if-present",
"q2": "cross-env NODE_TLS_REJECT_UNAUTHORIZED=0 node quicktest2.js",
"q": "cross-env NODE_TLS_REJECT_UNAUTHORIZED=0 node quicktest.js"
},
"devDependencies": {
"@babel/cli": "^7.28.3",
"@babel/core": "^7.28.5",
"@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-object-rest-spread": "^7.20.7",
"@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/plugin-transform-regenerator": "^7.28.4",
"@babel/plugin-transform-runtime": "^7.28.5",
"@babel/plugin-transform-spread": "^7.27.1",
"@babel/plugin-transform-strict-mode": "^7.27.1",
"@babel/preset-env": "^7.28.5",
"babel-loader": "^10.0.0",
"core-js": "^3.47.0",
"cross-env": "^10.1.0",
"rimraf": "^6.1.2",
"rmdir": "^1.2.0",
"undici": "^7.19.0",
"webpack": "^5.104.1",
"webpack-cli": "^6.0.1",
"webpack-node-externals": "^3.0.0"
},
"dependencies": {
"@babel/runtime": "^7.28.4",
"axios": "^1.13.2",
"immutable": "^5.1.4",
"lodash": ">=4.17.21",
"qs": "^6.14.0",
"redux": "^5.0.1",
"redux-saga": "^1.4.2",
"url-parse": "^1.5.10",
"uuid": "^13.0.0",
"webpack-bundle-analyzer": "^5.1.0"
},
"jest": {
"testTimeout": 10000000,
"verbose": false
}
}