-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
69 lines (69 loc) · 1.96 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
{
"name": "svelte3-redux",
"description": "Redux for Svelte 3",
"version": "0.4.0",
"author": "Daishi Kato",
"repository": {
"type": "git",
"url": "https://github.com/dai-shi/svelte3-redux.git"
},
"source": "./src/index.ts",
"main": "./dist/index.umd.js",
"module": "./dist/index.modern.js",
"types": "./dist/src/index.d.ts",
"sideEffects": false,
"files": [
"src",
"dist"
],
"scripts": {
"compile": "microbundle build -f modern,umd",
"test": "run-s eslint tsc-test jest",
"eslint": "eslint --ext .js,.ts,.svelte --ignore-pattern dist .",
"jest": "jest --preset ts-jest/presets/js-with-ts __tests__/*.ts",
"tsc-test": "tsc --project . --noEmit",
"apidoc": "documentation readme --section API --markdown-toc false --parse-extension ts src/*.ts",
"examples:01_minimal": "DIR=01_minimal EXT=js webpack-dev-server",
"examples:02_typescript": "DIR=02_typescript webpack-dev-server",
"examples:03_worker": "DIR=03_worker webpack-dev-server"
},
"keywords": [
"svelte",
"redux",
"store",
"state"
],
"license": "MIT",
"dependencies": {
"proxy-compare": "^1.0.2"
},
"devDependencies": {
"@types/jest": "^26.0.3",
"@typescript-eslint/eslint-plugin": "^3.5.0",
"@typescript-eslint/parser": "^3.5.0",
"documentation": "^13.0.2",
"eslint": "^7.3.1",
"eslint-config-airbnb-base": "^14.2.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-svelte3": "^2.7.3",
"html-webpack-plugin": "^4.3.0",
"jest": "^26.1.0",
"microbundle": "^0.12.2",
"npm-run-all": "^4.1.5",
"redux": "^4.0.5",
"redux-in-worker": "^0.7.0",
"svelte": "^3.23.2",
"svelte-loader": "^2.13.6",
"ts-jest": "^26.1.1",
"ts-loader": "^7.0.5",
"typescript": "^3.9.6",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.12",
"webpack-dev-server": "^3.11.0",
"worker-plugin": "^4.0.3"
},
"peerDependencies": {
"redux": ">=4.0.0",
"svelte": ">=3.0.0"
}
}