-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·102 lines (102 loc) · 3.57 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
101
102
{
"name": "laminar-flux",
"version": "0.2.1",
"description": "Flux model",
"main": "src/index.ts",
"unpkg": "dist/laminar-flux.js",
"module": "es/laminar-flux.js",
"types": "./types",
"files": [
"dist",
"lib",
"es",
"src",
"types"
],
"scripts": {
"clean": "rimraf lib dist es coverage cache types",
"format": "prettier --write \"{src,test}/**/*.{js,ts}\" \"**/*.md\"",
"format:check": "prettier --list-different \"{src,test}/**/*.{js,ts}\" \"**/*.md\"",
"lint": "eslint --ext .js,.ts,.d.ts src",
"lint:fix": "eslint --ext .js,.ts,.d.ts src",
"types:check": "tsc --noEmit",
"test": "jest",
"test:watch": "yarn test --watch",
"test:debug": "yarn test --collectCoverage=false --reporters jest-silent-reporter",
"test:coverage": "yarn test --coverage",
"build": "rollup -c",
"build:clean": "yarn types:check && yarn clean && yarn build",
"docs": "jsdoc2md --files ./src/*.ts --configure ./jsdoc2md.json > ./docs/readme.md",
"report": "yarn lint && yarn types:check && yarn test:coverage && yarn format:check",
"pretest": "yarn build"
},
"repository": {
"type": "git",
"url": "git+https://git.ilyapavkin.ru/ilya/laminar-flux.git"
},
"keywords": [
"laminar",
"flux",
"redux",
"reducer",
"state",
"react",
"react-native"
],
"author": "Ilya Pavkin",
"license": "MIT",
"bugs": {
"url": "https://git.ilyapavkin.ru/ilya/laminar-flux/issues"
},
"homepage": "https://git.ilyapavkin.ru/ilya/laminar-flux#readme",
"devDependencies": {
"@babel/cli": "^7.11.6",
"@babel/core": "^7.11.6",
"@babel/plugin-proposal-class-properties": "^7.10.4",
"@babel/plugin-proposal-decorators": "^7.10.5",
"@babel/plugin-proposal-object-rest-spread": "^7.12.1",
"@babel/plugin-transform-modules-commonjs": "^7.12.1",
"@babel/plugin-transform-runtime": "^7.12.10",
"@babel/preset-env": "^7.11.5",
"@babel/preset-typescript": "^7.10.4",
"@rollup/plugin-babel": "^5.2.2",
"@rollup/plugin-node-resolve": "^11.1.0",
"@rollup/plugin-replace": "^2.3.4",
"@types/jest": "^26.0.3",
"@types/react-redux": "^7.1.7",
"@types/redux-mock-store": "^1.0.2",
"@typescript-eslint/eslint-plugin": "^4.14.0",
"@typescript-eslint/parser": "^4.14.0",
"babel-eslint": "^10.1.0",
"babel-jest": "^26.6.3",
"eslint-config-airbnb-typescript": "^12.0.0",
"eslint-config-prettier": "^7.2.0",
"eslint-import-resolver-typescript": "^2.0.0",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-jsdoc": "^31.3.3",
"eslint-plugin-prettier": "^3.1.3",
"fetch-mock": "^9.5.1",
"jest": "^26.6.3",
"jest-silent-reporter": "^0.4.0",
"jsdoc-babel": "^0.5.0",
"jsdoc-to-markdown": "^6.0.1",
"prettier": "^2.2.1",
"prettier-eslint": "^12.0.0",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"redux-mock-store": "^1.5.4",
"rimraf": "^3.0.2",
"rollup": "^2.38.0",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript2": "^0.29.0",
"ts-jest": "^26.4.4",
"typescript": "^4.1.3",
"typings-tester": "^0.3.2"
},
"dependencies": {
"@babel/runtime": "^7.12.5",
"react-redux": "^7.2.0",
"redux": "^4.0.5",
"typesafe-actions": "^5.1.0"
}
}