-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 2.23 KB
/
package.json
File metadata and controls
81 lines (81 loc) · 2.23 KB
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
{
"name": "rel-events",
"version": "0.4.6",
"description": "The relevant React Events Library. Events framework based on redux to decouple our from business logic and make state management easy.",
"main": "index.js",
"scripts": {
"coveralls": "npm run test && cat ./coverage/lcov.info | coveralls",
"lint": "NODE_ENV=production eslint lib/** __tests__/**",
"test": "NODE_ENV=test npm run dist && jest --coverage",
"jest": "NODE_ENV=test npm run dist && jest",
"dist": "NODE_ENV=production ./node_modules/.bin/babel lib -d dist",
"test_debug": "NODE_ENV=test node --inspect node_modules/.bin/jest --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/labcodes/rel-event.git"
},
"keywords": [
"react",
"redux",
"api",
"tools",
"middleware"
],
"author": "Luciano Ratamero",
"license": "MIT",
"bugs": {
"url": "https://github.com/labcodes/rel-event/issues"
},
"homepage": "https://github.com/labcodes/rel-event#readme",
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.9.6",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/plugin-transform-runtime": "^7.9.6",
"@babel/preset-env": "^7.9.6",
"@babel/runtime": "^7.9.6",
"babel-eslint": "^10.1.0",
"babel-plugin-rewire": "^1.2.0",
"coveralls": "^3.1.0",
"eslint": "^6.0.1",
"eslint-config-airbnb-base": "^13.2.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-prettier": "^3.1.3",
"husky": "^3.0.1",
"jest": "^26.0.1",
"jest-fetch-mock": "^2.1.2",
"prettier": "^1.18.2",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-redux": "^5",
"redux": "^4.0.4"
},
"jest": {
"automock": false,
"setupFiles": [
"<rootDir>/setupJest.js"
],
"coverageThreshold": {
"global": {
"branches": 100,
"functions": 100,
"lines": 100,
"statements": 100
}
}
},
"husky": {
"hooks": {
"pre-commit": "npm run lint && npm run test && git add dist"
}
},
"peerDependencies": {
"react-redux": "~5"
},
"dependencies": {
"lodash.debounce": "^4.0.8",
"react-redux-api-tools": "^2.1.1"
}
}