-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.46 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
{
"name": "eweector",
"version": "0.0.4",
"description": "e-wee-ctor is a educational purpose project to make a tiny Effector-like library",
"author": "Victor Didenko <[email protected]> (https://yumaa.name)",
"type": "module",
"private": true,
"scripts": {
"format": "prettier --write \"src/**/*.js\"",
"lint": "xo",
"test": "ava --verbose"
},
"prettier": {
"printWidth": 80,
"tabWidth": 2,
"useTabs": false,
"semi": false,
"singleQuote": true,
"quoteProps": "as-needed",
"jsxSingleQuote": true,
"trailingComma": "es5",
"bracketSpacing": true,
"jsxBracketSameLine": false,
"arrowParens": "avoid"
},
"xo": {
"prettier": true,
"rules": {
"import/extensions": "off",
"import/no-useless-path-segments": "off",
"unicorn/import-index": "off",
"unicorn/filename-case": "off",
"unicorn/prevent-abbreviations": "off",
"capitalized-comments": "off",
"prefer-destructuring": "off",
"no-multi-assign": "off",
"prefer-promise-reject-errors": "off",
"no-throw-literal": "off",
"no-return-assign": "off",
"default-case": "off",
"no-labels": "off",
"guard-for-in": "off",
"padding-line-between-statements": "off",
"promise/prefer-await-to-then": "off"
}
},
"devDependencies": {
"ava": "^5.2.0",
"ninos": "^3.0.0",
"prettier": "^2.8.8",
"xo": "^0.54.2"
},
"engines": {
"node": ">=14"
}
}