-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
88 lines (88 loc) · 2.09 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
{
"name": "@storeon/svelte",
"version": "1.0.0",
"description": "A tiny (187 bytes) connector for Storeon and Svelte",
"main": "index.js",
"types": "index.d.ts",
"repository": "https://github.com/storeon/svelte.git",
"author": "Dmytro Mostovyi <djmakaron2009@gmail.com>",
"license": "MIT",
"scripts": {
"start": "parcel serve example/index.html --open",
"lint": "eslint ./*.js",
"test": "jest --coverage && yarn lint && size-limit"
},
"sideEffects": false,
"peerDependencies": {
"storeon": "^3.0.0",
"svelte": "^3.20.0"
},
"devDependencies": {
"@logux/eslint-config": "^42.1.0",
"@size-limit/dual-publish": "^4.7.0",
"@size-limit/preset-small-lib": "^4.7.0",
"dual-publish": "^0.11.0",
"eslint": "^7.12.1",
"eslint-config-standard": "^16.0.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jest": "^24.1.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prefer-let": "^1.1.0",
"eslint-plugin-prettierx": "^0.14.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-security": "^1.4.0",
"eslint-plugin-standard": "^4.0.2",
"eslint-plugin-unicorn": "^23.0.0",
"husky": "^4.3.0",
"jest": "^26.6.1",
"lint-staged": "^10.5.1",
"parcel-bundler": "^1.12.4",
"parcel-plugin-svelte": "^4.0.6",
"size-limit": "^4.7.0",
"storeon": "^3.1.1",
"svelte": "^3.29.4",
"todomvc-app-css": "^2.3.0",
"typescript": "^4.0.5"
},
"lint-staged": {
"*.js": [
"eslint --fix",
"git add"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"browserslist": [
"last 1 chrome versions"
],
"size-limit": [
{
"name": "core",
"import": {
"index.js": "{ provideStoreon, useStoreon }"
},
"limit": "179 B",
"ignore": [
"svelte"
]
}
],
"eslintConfig": {
"extends": "@logux/eslint-config",
"rules": {
"node/no-unpublished-require": "off",
"func-style": "off"
}
},
"eslintIgnore": [
"node_modules"
],
"keywords": [
"storeon",
"state",
"svelte"
]
}