@sassoftware/restaf 5.5.1-9 → 5.7.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +1139 -1139
- package/dist/restaf.esm.js +2036 -0
- package/dist/restaf.umd.js +2227 -0
- package/lib/restaf.js +876 -959
- package/package.json +51 -49
- package/dist/restaf.js +0 -2298
- package/dist/restaf.min.js +0 -2
- package/dist/restaf.min.js.LICENSE.txt +0 -10
package/package.json
CHANGED
|
@@ -1,49 +1,51 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "@sassoftware/restaf",
|
|
3
|
-
"version": "5.
|
|
4
|
-
"description": "Library for writing SAS Viya application using REST APIs",
|
|
5
|
-
"author": "Deva Kumaraswamy <deva.kumar@sas.com>",
|
|
6
|
-
"license": "Apache-2.0",
|
|
7
|
-
"keywords": [
|
|
8
|
-
"restaf",
|
|
9
|
-
"SAS",
|
|
10
|
-
"Viya",
|
|
11
|
-
"REST API"
|
|
12
|
-
],
|
|
13
|
-
"homepage": "https://github.com/sassoftware/restaf#README.md",
|
|
14
|
-
"repository": {
|
|
15
|
-
"type": "git",
|
|
16
|
-
"url": "https://github.com/sassoftware/restaf/tree/main/packages/restaf"
|
|
17
|
-
},
|
|
18
|
-
"bugs": {
|
|
19
|
-
"url": "https://github.com/sassoftware/restaf/issues"
|
|
20
|
-
},
|
|
21
|
-
"
|
|
22
|
-
"
|
|
23
|
-
"
|
|
24
|
-
"
|
|
25
|
-
"files": [
|
|
26
|
-
"lib",
|
|
27
|
-
"dist"
|
|
28
|
-
],
|
|
29
|
-
"engines": {
|
|
30
|
-
"node": ">=22.16.0",
|
|
31
|
-
"npm": ">=10.9.2"
|
|
32
|
-
},
|
|
33
|
-
"browserslist": [
|
|
34
|
-
"last 2 versions",
|
|
35
|
-
"ie >= 11",
|
|
36
|
-
"maintained node versions"
|
|
37
|
-
],
|
|
38
|
-
"scripts": {
|
|
39
|
-
"test": "node",
|
|
40
|
-
"build": "
|
|
41
|
-
"build:
|
|
42
|
-
"
|
|
43
|
-
"
|
|
44
|
-
"
|
|
45
|
-
"
|
|
46
|
-
"
|
|
47
|
-
"
|
|
48
|
-
|
|
49
|
-
|
|
1
|
+
{
|
|
2
|
+
"name": "@sassoftware/restaf",
|
|
3
|
+
"version": "5.7.0",
|
|
4
|
+
"description": "Library for writing SAS Viya application using REST APIs",
|
|
5
|
+
"author": "Deva Kumaraswamy <deva.kumar@sas.com>",
|
|
6
|
+
"license": "Apache-2.0",
|
|
7
|
+
"keywords": [
|
|
8
|
+
"restaf",
|
|
9
|
+
"SAS",
|
|
10
|
+
"Viya",
|
|
11
|
+
"REST API"
|
|
12
|
+
],
|
|
13
|
+
"homepage": "https://github.com/sassoftware/restaf#README.md",
|
|
14
|
+
"repository": {
|
|
15
|
+
"type": "git",
|
|
16
|
+
"url": "https://github.com/sassoftware/restaf/tree/main/packages/restaf"
|
|
17
|
+
},
|
|
18
|
+
"bugs": {
|
|
19
|
+
"url": "https://github.com/sassoftware/restaf/issues"
|
|
20
|
+
},
|
|
21
|
+
"main": "./lib/restaf.js",
|
|
22
|
+
"modules": "/dist/restaf.umd.js",
|
|
23
|
+
"browser": "/dist/restaf.umd.js",
|
|
24
|
+
"unpkg": "/dist/restaf.umd.js",
|
|
25
|
+
"files": [
|
|
26
|
+
"lib",
|
|
27
|
+
"dist"
|
|
28
|
+
],
|
|
29
|
+
"engines": {
|
|
30
|
+
"node": ">=22.16.0",
|
|
31
|
+
"npm": ">=10.9.2"
|
|
32
|
+
},
|
|
33
|
+
"browserslist": [
|
|
34
|
+
"last 2 versions",
|
|
35
|
+
"ie >= 11",
|
|
36
|
+
"maintained node versions"
|
|
37
|
+
],
|
|
38
|
+
"scripts": {
|
|
39
|
+
"test": "node",
|
|
40
|
+
"build": "npm run build:node && npm run build:web && npm run build:esm",
|
|
41
|
+
"build:node": "rimraf lib && webpack --env target=node p=n --config webpack.config.umd.js",
|
|
42
|
+
"build:web": "rimraf dist && webpack --env target=web p=n --config webpack.config.umd.js",
|
|
43
|
+
"build:esm": "webpack --env target=web p=n --config webpack.esm.config.js",
|
|
44
|
+
"babel": "babel src --out-dir jslib",
|
|
45
|
+
"pub": "npm publish --tag dev --access public",
|
|
46
|
+
"lint": "eslint . --fix",
|
|
47
|
+
"jsdoc": "jsdoc -c jsdoc.json",
|
|
48
|
+
"dlink": "npm link",
|
|
49
|
+
"bump": "npm version prerelease"
|
|
50
|
+
}
|
|
51
|
+
}
|