-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
100 lines (100 loc) · 3.7 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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
{
"name": "@sassoftware/restaf",
"version": "5.3.0-alpha.0",
"description": "Library for writing SAS Viya application using REST APIs",
"author": "Deva Kumaraswamy <[email protected]>",
"license": "Apache-2.0",
"keywords": [
"restaf",
"SAS",
"Viya",
"REST API"
],
"main": "lib/restaf",
"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": {
"testold": "cd ./packages/examples && npm test",
"test": "cd ./packages/tests && npm test",
"restafedit:test": "cd ./packages/examples && cross-env NODE_TLS_REJECT_UNAUTHORIZED=0 node restafeditTest.js",
"pup:test": "cd ./packages/examples/puptests && node",
"pup:debug": "cd ./packages/examples/puptests && node --inspect-brk",
"debug": "cd ./packages/tests && npm run debug",
"restaf:build": "cd ./packages/restaf && yarn build",
"restaf:pub": "cd ./packages/restaf && npm run pub",
"restaflib:pub": "cd ./packages/restaflib && npm run pub",
"restaflib:build": "cd ./packages/restaflib && yarn build",
"build": "cross-env NODE_OPTIONS=--openssl-legacy-provider npm run restaf:build && npm run restaflib:build",
"puball": "npm run restaf:pub && npm run restaflib:pub",
"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 prerelease && npm run bump --workspaces --if-present"
},
"devDependencies": {
"@babel/cli": "^7.23.0",
"@babel/core": "^7.23.3",
"@babel/plugin-proposal-class-properties": "^7.14.5",
"@babel/plugin-proposal-decorators": "^7.23.3",
"@babel/plugin-proposal-do-expressions": "^7.14.5",
"@babel/plugin-proposal-export-default-from": "^7.14.5",
"@babel/plugin-proposal-export-namespace-from": "^7.14.5",
"@babel/plugin-proposal-function-bind": "^7.14.5",
"@babel/plugin-proposal-function-sent": "^7.14.5",
"@babel/plugin-proposal-json-strings": "^7.14.5",
"@babel/plugin-proposal-logical-assignment-operators": "^7.14.5",
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.14.5",
"@babel/plugin-proposal-numeric-separator": "^7.14.5",
"@babel/plugin-proposal-object-rest-spread": "^7.14.7",
"@babel/plugin-proposal-optional-chaining": "^7.14.5",
"@babel/plugin-proposal-pipeline-operator": "^7.14.5",
"@babel/plugin-proposal-throw-expressions": "^7.14.5",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/plugin-syntax-import-meta": "^7.10.4",
"@babel/plugin-transform-regenerator": "^7.14.5",
"@babel/plugin-transform-runtime": "^7.14.5",
"@babel/plugin-transform-spread": "^7.14.6",
"@babel/plugin-transform-strict-mode": "^7.14.5",
"@babel/preset-env": "^7.14.7",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.2.2",
"core-js": "^3.15.2",
"cross-env": "^7.0.3",
"eslint": "^8.53.0",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-jest": "^24.3.6",
"eslint-plugin-redux-saga": "^1.2.1",
"jest": "^27.5.1",
"prettier": "^2.0.4",
"webpack": "4.46.0",
"webpack-cli": "4.5.0",
"webpack-node-externals": "^3.0.0"
},
"dependencies": {
"@babel/runtime": "^7.23.2",
"axios": "^1.6.1",
"immutable": "^4.3.4",
"lodash": ">=4.17.21",
"qs": "^6.9.1",
"redux": "^4.0.5",
"redux-saga": "^1.2.3",
"url-parse": "^1.5.9",
"uuid": "^9.0.1"
},
"jest": {
"testTimeout": 10000000,
"verbose": false
}
}