@lvce-editor/test-worker 1.0.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/LICENSE +21 -0
- package/README.md +1 -0
- package/dist/index.js +1901 -0
- package/package.json +73 -0
package/package.json
ADDED
|
@@ -0,0 +1,73 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@lvce-editor/test-worker",
|
|
3
|
+
"version": "1.0.0",
|
|
4
|
+
"description": "",
|
|
5
|
+
"main": "dist/index.js",
|
|
6
|
+
"type": "module",
|
|
7
|
+
"directories": {
|
|
8
|
+
"test": "test"
|
|
9
|
+
},
|
|
10
|
+
"keywords": [],
|
|
11
|
+
"author": "",
|
|
12
|
+
"license": "MIT",
|
|
13
|
+
"xo": {
|
|
14
|
+
"rules": {
|
|
15
|
+
"unicorn/filename-case": "off",
|
|
16
|
+
"unicorn/prefer-query-selector": "off",
|
|
17
|
+
"indent": "off",
|
|
18
|
+
"semi": "off",
|
|
19
|
+
"no-unused-vars": "off",
|
|
20
|
+
"unicorn/numeric-separators-style": "off",
|
|
21
|
+
"no-extra-semi": "off",
|
|
22
|
+
"arrow-body-style": "off",
|
|
23
|
+
"padded-blocks": "off",
|
|
24
|
+
"capitalized-comments": "off",
|
|
25
|
+
"padding-line-between-statements": "off",
|
|
26
|
+
"arrow-parens": "off",
|
|
27
|
+
"no-warning-comments": "off",
|
|
28
|
+
"array-bracket-spacing": "off",
|
|
29
|
+
"comma-spacing": "off",
|
|
30
|
+
"unicorn/no-array-callback-reference": "off",
|
|
31
|
+
"comma-dangle": "off",
|
|
32
|
+
"operator-linebreak": "off",
|
|
33
|
+
"no-case-declarations": "off",
|
|
34
|
+
"no-undef": "off",
|
|
35
|
+
"object-curly-spacing": "off",
|
|
36
|
+
"object-shorthand": "off",
|
|
37
|
+
"complexity": "off",
|
|
38
|
+
"no-labels": "off",
|
|
39
|
+
"no-multi-assign": "off",
|
|
40
|
+
"max-params": "off",
|
|
41
|
+
"no-bitwise": "off",
|
|
42
|
+
"unicorn/prefer-math-trunc": "off",
|
|
43
|
+
"no-await-in-loop": "off",
|
|
44
|
+
"unicorn/prefer-add-event-listener": "off",
|
|
45
|
+
"no-unused-expressions": "off",
|
|
46
|
+
"node/prefer-global/process": "off",
|
|
47
|
+
"unicorn/no-for-loop": "off",
|
|
48
|
+
"unicorn/prevent-abbreviations": "off",
|
|
49
|
+
"unicorn/switch-case-braces": "off",
|
|
50
|
+
"quotes": "off",
|
|
51
|
+
"@typescript-eslint/semi": "off",
|
|
52
|
+
"object-curly-newline": "off",
|
|
53
|
+
"@typescript-eslint/naming-convention": "off",
|
|
54
|
+
"@typescript-eslint/indent": "off",
|
|
55
|
+
"n/file-extension-in-import": "off",
|
|
56
|
+
"@typescript-eslint/promise-function-async": "off",
|
|
57
|
+
"@typescript-eslint/no-unsafe-argument": "off",
|
|
58
|
+
"@typescript-eslint/quotes": "off",
|
|
59
|
+
"@typescript-eslint/object-curly-spacing": "off",
|
|
60
|
+
"@typescript-eslint/padding-line-between-statements": "off",
|
|
61
|
+
"@typescript-eslint/prefer-ts-expect-error": "off",
|
|
62
|
+
"@typescript-eslint/consistent-type-definitions": "off",
|
|
63
|
+
"@typescript-eslint/ban-ts-comment": "off",
|
|
64
|
+
"@typescript-eslint/no-confusing-void-expression": "off"
|
|
65
|
+
},
|
|
66
|
+
"ignores": [
|
|
67
|
+
"distmin"
|
|
68
|
+
]
|
|
69
|
+
},
|
|
70
|
+
"dependencies": {
|
|
71
|
+
"@lvce-editor/assert": "^1.2.0"
|
|
72
|
+
}
|
|
73
|
+
}
|