-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
80 lines (80 loc) · 2.01 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
{
"name": "@storeon/solidjs",
"version": "3.0.1",
"description": "A tiny connector for Storeon and Solid.js",
"main": "index.js",
"types": "index.d.ts",
"repository": "[email protected]:storeon/solidjs.git",
"author": "Dmytro Mostovyi <[email protected]>",
"license": "MIT",
"private": false,
"sideEffects": false,
"type": "module",
"exports": "./index.js",
"engines": {
"node": "^12.0.0 || ^14.0.0 || >=16.0.0"
},
"files": [
"index.js",
"index.d.ts"
],
"keywords": [
"storeon",
"state",
"solid-js",
"solid"
],
"scripts": {
"start": "parcel serve example/index.html --open",
"lint": "eslint ./*.js",
"test": "node --experimental-vm-modules node_modules/.bin/jest --coverage && yarn lint && size-limit",
"publish": "clean-publish"
},
"peerDependencies": {
"solid-js": "^1.0.0",
"storeon": "^3.0.0"
},
"devDependencies": {
"@babel/cli": "^7.15.7",
"@babel/core": "^7.15.8",
"@babel/preset-env": "^7.15.8",
"@logux/eslint-config": "^46.0.0",
"@size-limit/preset-small-lib": "^6.0.3",
"@testing-library/jest-dom": "^5.14.1",
"babel-preset-solid": "^1.1.7",
"clean-publish": "^3.4.2",
"eslint": "^8.1.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-jest": "^25.2.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prefer-let": "^1.1.0",
"eslint-plugin-promise": "^5.1.1",
"eslint-plugin-security": "^1.4.0",
"eslint-plugin-unicorn": "^37.0.1",
"jest": "^27.3.1",
"size-limit": "^6.0.3",
"solid-jest": "^0.2.0",
"solid-js": "^1.1.7",
"solid-testing-library": "^0.2.1",
"storeon": "^3.1.4"
},
"size-limit": [
{
"name": "core",
"import": {
"index.js": "{ StoreonProvider, useStoreon }"
},
"limit": "200 B",
"ignore": [
"solid-js"
]
}
],
"eslintConfig": {
"extends": "@logux/eslint-config"
},
"jest": {
"preset": "solid-jest/preset/browser"
}
}