-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 2.01 KB
/
package.json
File metadata and controls
81 lines (81 loc) · 2.01 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": "react-default-memo",
"version": "0.0.0",
"description": "React default memoization",
"main": "build/index.js",
"scripts": {
"build": "webpack",
"test": "jest",
"test:watch": "jest --watch",
"test:prod": "npm run test -- --coverage --no-cache",
"prepare": "npm run build",
"report-coverage": "cat ./coverage/lcov.info | coveralls"
},
"repository": {
"type": "git",
"url": "git@github.com:slikts/react-default-memo.git"
},
"author": "slikts <dabas@untu.ms>",
"license": "MIT",
"bugs": {
"url": "https://github.com/slikts/react-default-memo/issues"
},
"homepage": "https://github.com/slikts/react-default-memo",
"keywords": [
"react",
"memoization"
],
"lint-staged": {
"{src}/**/*.js": [
"prettier --write",
"git add"
]
},
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.8.4",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/polyfill": "^7.8.3",
"@babel/preset-env": "^7.8.4",
"@semantic-release/npm": "^7.0.3",
"babel-loader": "^8.0.6",
"babel-preset-minify": "^0.5.0",
"coveralls": "^3.0.9",
"cz-conventional-changelog": "^3.1.0",
"file-loader": "^6.0.0",
"husky": "^6.0.0",
"jest": "^26.0.1",
"lint-staged": "^10.0.7",
"prettier": "^1.19.1",
"prettier-webpack-plugin": "^1.2.0",
"react": "^17.0.2",
"semantic-release": "^17.0.4",
"style-loader": "^2.0.0",
"url-loader": "^4.0.0",
"webpack": "^4.41.6",
"webpack-cli": "^4.0.0"
},
"dependencies": {
"tuplerone": "^3.4.0-beta.6"
},
"peerDependencies": {
"react": ">= 16.x"
},
"jest": {
"testRegex": "(/__tests__/.*|\\.(test|spec))\\.(ts|tsx|js)$",
"collectCoverageFrom": [
"src/**/*.js",
"!src/**/*.test.js"
]
},
"prettier": {
"trailingComma": "all"
},
"husky": {
"hooks": {
"commit-msg": "validate-commit-msg",
"pre-commit": "lint-staged",
"pre-push": "npm run test:prod && npm run build"
}
}
}