-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
73 lines (73 loc) · 1.54 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
{
"devDependencies": {
"babel-eslint": "10.0.1",
"eslint": "^6.6.0",
"husky": "^3.0.9",
"jest": "23.6.0",
"lerna": "3.10.8",
"lint-staged": "8.1.3",
"standard": "14.3.1"
},
"name": "uif",
"scripts": {
"install:all": "lerna exec --stream -- yarn",
"test": "jest --config=jest.config.json --verbose",
"test:all": "lerna run test --stream --concurrency 1",
"lint:all": "lerna run lint --stream --concurrency 1 --no-bail",
"lint:all:fix": "lerna run lint:fix --stream --concurrency 1 --no-bail"
},
"standard": {
"env": [
"jest",
"browser"
],
"globals": [
"kl",
"runtime",
"_",
"localization",
"$",
"joinComponent",
"getComponentSchemePair",
"shortId",
"key",
"constants",
"shortid",
"riot",
"ControlSetup",
"PropertyGroup",
"TextField",
"BoolField",
"OptionalFunctionField",
"LinkButtonField",
"OptionalTextField",
"ListEditorElementsField",
"LockSourceField",
"AccordionSourceField",
"StyleField",
"DependencyListField",
"ValidationListField",
"ValueField",
"TableColumnListField",
"ListEditorActionsField",
"customFields",
"moduleExtension",
"SelectField",
"CustomLayoutField",
"GridItemsListField"
],
"validate": [
"javascript"
],
"ignore": [
".history",
".idea",
".vscode"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
}
}