-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
106 lines (106 loc) · 2.36 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
103
104
105
106
{
"name": "saga-slice-helpers",
"version": "2.0.1",
"description": "Opinionated helpers for working with saga-slice library",
"scripts": {
"test": "jest --passWithNoTests --runInBand",
"tdd": "npm run test -- --watch",
"lint": "eslint .",
"build": "rollup -c",
"docs": "rm -rf docs; make docs;",
"ts": "tsc",
"release": "standard-version"
},
"homepage": "https://github.com/damusix/saga-slice-helpers#readme",
"repository": {
"type": "git",
"url": "https://github.com/damusix/saga-slice-helpers.git"
},
"bugs": {
"url": "https://github.com/damusix/saga-slice-helpers/issues"
},
"author": {
"name": "Danilo Alonso",
"email": "[email protected]",
"url": "https://danilo.io"
},
"license": "MIT",
"main": "dist/cjs.js",
"unpkg": "dist/umd.js",
"module": "dist/es.js",
"typings": "dist/types.d.ts",
"keywords": [
"redux",
"react",
"sagas",
"boilerplate",
"crud",
"rest"
],
"devDependencies": {
"@babel/polyfill": "^7.4.4",
"@babel/preset-env": "^7.5.5",
"axios": "^0.x.x",
"babel-eslint": "^10.0.2",
"eslint": "^6.1.0",
"eslint-plugin-jest": "^22.15.1",
"eslint-plugin-react": "^7.14.3",
"ghooks": "^2.0.4",
"immer": "^3.x.x",
"jest": "^24.8.0",
"jsdoc-to-markdown": "^5.0.0",
"redux": "^4.x.x",
"redux-saga": "^1.x.x",
"rollup": "^1.27.0",
"rollup-plugin-babel": "^4.3.3",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-replace": "^2.2.0",
"rollup-plugin-terser": "^5.1.2",
"saga-slice": "^1.1.0",
"standard-version": "^7.1.0",
"typescript": "^3.7.4"
},
"peerDependencies": {
"saga-slice": "^1.x.x",
"axios": "^0.x.x",
"redux-saga": "^1.x.x"
},
"eslintConfig": {
"parser": "babel-eslint",
"plugins": [
"jest"
],
"extends": [
"eslint:recommended",
"plugin:react/recommended"
],
"parserOptions": {
"ecmaFeatures": {
"jsx": true,
"modules": true
}
},
"env": {
"jest/globals": true,
"browser": true,
"node": true,
"es6": true
},
"settings": {
"react": {
"version": "16.x"
}
}
},
"babel": {
"presets": [
"@babel/preset-env"
]
},
"config": {
"ghooks": {
"pre-commit": "npm run lint",
"pre-push": "npm run test"
}
}
}