-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
83 lines (83 loc) · 2.33 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
{
"name": "react-lazy-update",
"version": "1.0.0",
"description": "Optimized update hook for react",
"main": "index.js",
"scripts": {
"lint": "eslint ./src ./tests --ext .js --cache --ignore-pattern .gitignore",
"lint:fix": "eslint ./src ./tests --ext .js --cache --ignore-pattern .gitignore --fix",
"test": "jest",
"cover:check": "jest --coverage",
"codecov": "codecov -t $CODECOV_TOKEN",
"precommit": "npm run lint",
"prepush": "npm run lint && npm run cover:check",
"precheck": "node ./tools/precheck.js",
"clean": "node ./tools/clean.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/andres-kovalev/react-lazy-update.git"
},
"keywords": [
"react",
"lazy",
"state",
"update"
],
"engines": {
"node": ">= 6.2.0"
},
"author": {
"name": "Andres Kovalev",
"email": "[email protected]"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/andres-kovalev/react-lazy-update/issues"
},
"homepage": "https://github.com/andres-kovalev/react-lazy-update#readme",
"peerDependencies": {
"react": "^16.8.0"
},
"devDependencies": {
"codecov": "^3.2.0",
"eslint": "^5.15.3",
"eslint-config-airbnb": "^17.1.0",
"eslint-plugin-import": "^2.16.0",
"husky": "^1.3.1",
"@babel/preset-react": "^7.0.0",
"babel-eslint": "^10.0.2",
"enzyme": "^3.10.0",
"enzyme-adapter-react-16": "^1.14.0",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.14.2",
"jest": "^24.8.0",
"react-dom": "^16.8.0"
},
"husky": {
"hooks": {
"pre-commit": "npm run precommit",
"pre-push": "npm run prepush"
}
},
"jest": {
"collectCoverageFrom": [
"src/**/*.js",
"src/**/*.jsx"
],
"setupFilesAfterEnv": [
"<rootDir>/tools/jest.config.js"
],
"coverageThreshold": {
"global": {
"branches": 70,
"functions": 70,
"lines": 70,
"statements": 70
}
}
},
"dependencies": {
"hoist-non-react-statics": "^3.3.0"
}
}