-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
100 lines (100 loc) · 2.38 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": "synks",
"version": "1.1.8",
"description": "Asynchronous view renderer",
"main": "dist/synks.js",
"types": "dist/index.d.ts",
"module": "dist/synks.es.js",
"jsnext:main": "dist/synks.es.js",
"scripts": {
"start": "node config/fuse",
"build": "rollup -c config/rollup.config.js",
"test": "jest src",
"lint": "eslint . --ext .ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Marcisbee/synks.git"
},
"keywords": [
"synks",
"components",
"generators",
"ui",
"user interface",
"dom",
"vdom",
"virtual dom",
"framework",
"view"
],
"author": "Marcis Bergmanis <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/Marcisbee/synks/issues"
},
"homepage": "https://github.com/Marcisbee/synks#readme",
"devDependencies": {
"@types/jest": "^26.0.15",
"@typescript-eslint/eslint-plugin": "^4.8.1",
"@typescript-eslint/parser": "^4.8.1",
"eslint": "^7.14.0",
"fuse-box": "^4.0.0-next.446",
"jest": "^26.6.3",
"rollup": "^2.33.3",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript2": "^0.29.0",
"sucrase": "^3.16.0"
},
"files": [
"dist",
"README.md"
],
"eslintConfig": {
"root": true,
"parser": "@typescript-eslint/parser",
"plugins": [
"@typescript-eslint"
],
"extends": [
"eslint:recommended",
"plugin:@typescript-eslint/eslint-recommended",
"plugin:@typescript-eslint/recommended"
],
"rules": {
"@typescript-eslint/prefer-namespace-keyword": "off",
"@typescript-eslint/no-explicit-any": "off",
"@typescript-eslint/no-empty-function": "off",
"@typescript-eslint/no-namespace": "off",
"@typescript-eslint/ban-types": "off",
"@typescript-eslint/explicit-module-boundary-types": "off",
"sort-imports": [
"error",
{
"ignoreCase": true,
"ignoreDeclarationSort": false,
"ignoreMemberSort": false,
"memberSyntaxSortOrder": [
"none",
"all",
"multiple",
"single"
]
}
]
}
},
"eslintIgnore": [
"node_modules",
"dist",
".temp",
".cache",
"examples",
"*.js"
],
"jest": {
"transform": {
"^.+\\.(t|j)s?$": "<rootDir>/config/jest-preprocessor.js"
}
}
}