@lightdash/common 0.1456.1 → 0.1456.4
Sign up to get free protection for your applications and to get access to all the features.
- package/LICENSE +21 -0
- package/package.json +45 -44
package/LICENSE
ADDED
@@ -0,0 +1,21 @@
|
|
1
|
+
MIT License
|
2
|
+
|
3
|
+
Copyright (c) 2021 Telescope Technologies Inc.
|
4
|
+
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
7
|
+
in the Software without restriction, including without limitation the rights
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
10
|
+
furnished to do so, subject to the following conditions:
|
11
|
+
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
13
|
+
copies or substantial portions of the Software.
|
14
|
+
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
21
|
+
SOFTWARE.
|
package/package.json
CHANGED
@@ -1,45 +1,46 @@
|
|
1
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
|
-
}
|
2
|
+
"name": "@lightdash/common",
|
3
|
+
"version": "0.1456.4",
|
4
|
+
"main": "dist/index.js",
|
5
|
+
"types": "dist/index.d.ts",
|
6
|
+
"files": [
|
7
|
+
"dist/**/*"
|
8
|
+
],
|
9
|
+
"license": "MIT",
|
10
|
+
"devDependencies": {
|
11
|
+
"@types/pegjs": "^0.10.3",
|
12
|
+
"@types/sanitize-html": "^2.11.0",
|
13
|
+
"@types/uuid": "^10.0.0",
|
14
|
+
"typescript-json-schema": "^0.54.0"
|
15
|
+
},
|
16
|
+
"dependencies": {
|
17
|
+
"@casl/ability": "^5.4.3",
|
18
|
+
"@types/lodash": "^4.14.202",
|
19
|
+
"ajv": "^8.3.0",
|
20
|
+
"ajv-formats": "^2.1.0",
|
21
|
+
"cronstrue": "^2.23.0",
|
22
|
+
"dayjs": "^1.11.9",
|
23
|
+
"dependency-graph": "^0.11.0",
|
24
|
+
"liquidjs": "^10.0.0",
|
25
|
+
"lodash": "^4.17.21",
|
26
|
+
"moment": "^2.29.4",
|
27
|
+
"moment-timezone": "^0.5.45",
|
28
|
+
"pegjs": "^0.10.0",
|
29
|
+
"sanitize-html": "^2.12.1",
|
30
|
+
"type-fest": "^4.32.0",
|
31
|
+
"uuid": "^11.0.3",
|
32
|
+
"zod": "^3.22.4"
|
33
|
+
},
|
34
|
+
"scripts": {
|
35
|
+
"dev": "tsx watch --clear-screen=false src/index.ts",
|
36
|
+
"build": "tsc --build tsconfig.json",
|
37
|
+
"linter": "eslint -c .eslintrc.js --ignore-path ./../../.gitignore",
|
38
|
+
"formatter": "prettier --config .prettierrc.js --ignore-unknown --ignore-path ./../../.gitignore",
|
39
|
+
"lint": "pnpm run linter ./src",
|
40
|
+
"fix-lint": "pnpm run linter ./src --fix",
|
41
|
+
"format": "pnpm run formatter ./src --check",
|
42
|
+
"fix-format": "pnpm run formatter ./src --write",
|
43
|
+
"test": "TZ=UTC jest",
|
44
|
+
"release": "pnpm publish --no-git-checks"
|
45
|
+
}
|
46
|
+
}
|