-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
93 lines (93 loc) · 2.47 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
{
"name": "redux-fluent",
"license": "MIT",
"version": "0.100.4",
"homepage": "https://github.com/Code-Y/redux-fluent#readme",
"description": "A Practical and Functional utility for redux",
"author": "Code-Y",
"sideEffects": false,
"main": "index.js",
"types": "index.d.ts",
"files": [
"/dist",
"CHANGELOG.md",
"LICENSE",
"index.js",
"index.d.ts"
],
"scripts": {
"lint": "eslint ./src/**/*.ts",
"build": "webpack --config webpack.config.js",
"test": "jest --coverage",
"release": "standard-version -m \"chore(release): %s [skip ci]\""
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/Code-Y/redux-fluent.git"
},
"bugs": {
"url": "https://github.com/Code-Y/redux-fluent/issues"
},
"contributors": [
"Giuseppe Mandato (https://github.com/hitmands)",
"Luca Pau (https://github.com/Lughino)"
],
"keywords": [
"redux",
"functional programming",
"ramda",
"typings"
],
"publishConfig": {
"access": "public"
},
"peerDependencies": {
"flux-standard-action": "^2.1.1",
"redux": "^4.0.4"
},
"devDependencies": {
"@commitlint/cli": "^8.2.0",
"@commitlint/config-conventional": "^8.2.0",
"@commitlint/travis-cli": "^8.2.0",
"@types/chai": "^4.2.6",
"@types/jest": "^25.1.0",
"@types/node": "^14.0.11",
"@types/ramda": "^0.27.0",
"@types/sinon": "^9.0.0",
"@types/sinon-chai": "^3.2.3",
"@typescript-eslint/eslint-plugin": "^2.11.0",
"@typescript-eslint/parser": "^2.11.0",
"awesome-typescript-loader": "^5.2.1",
"chai": "^4.2.0",
"eslint": "^6.7.2",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-loader": "^4.0.2",
"eslint-plugin-chai-friendly": "^0.5.0",
"eslint-plugin-import": "^2.19.1",
"eslint-plugin-jest": "^23.1.1",
"flux-standard-action": "^2.1.1",
"gitbook": "^2.6.9",
"gitbook-cli": "^2.3.2",
"gitbook-plugin-codesandbox": "^0.1.1",
"gitbook-plugin-edit-link": "^2.0.2",
"gitbook-plugin-github-edit": "^1.1.0",
"gitbook-plugin-prism": "^2.4.0",
"husky": "^4.0.0",
"jest": "^25.1.0",
"ramda": "^0.27.0",
"redux": "^4.0.4",
"sinon": "^9.0.0",
"sinon-chai": "^3.3.0",
"standard-version": "^8.0.1",
"ts-jest": "^26.1.0",
"typescript": "^3.7.3",
"webpack": "^4.41.2",
"webpack-cli": "^3.3.10",
"webpack-node-externals": "^1.7.2"
}
}