-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
89 lines (89 loc) · 2.81 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
{
"name": "hooooks",
"version": "1.5.2",
"description": "React Hooks from demand and reuse",
"author": "Hans",
"license": "ISC",
"main": "./lib/index.js",
"module": "./es/index.js",
"types": "./lib/index.d.ts",
"unpkg": "./dist/hooooks.js",
"keywords": [
"react",
"hooks",
"react-hooks",
"hooks-library"
],
"homepage": "https://github.com/MatchaDog/hooooks",
"bugs": {
"email": "[email protected]",
"url": "https://github.com/MatchaDog/hooooks/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/MatchaDog/hooooks.git"
},
"scripts": {
"test": "jest",
"build:gulp": "gulp",
"build": "webpack --progress --colors --config ./webpack.config.js",
"pub": "npm run build:gulp && npm publish",
"release:major": "standard-version -- --release-as major",
"release:minor": "standard-version -- --release-as minor",
"release:patch": "standard-version -- --release-as patch",
"commit": "git-cz",
"commit:init": "commitizen init cz-conventional-changelog --save-dev --save-exact"
},
"dependencies": {
"@juggle/resize-observer": "^3.2.0",
"intersection-observer": "^0.10.0",
"js-cookie": "^2.2.1"
},
"devDependencies": {
"@babel/core": "^7.11.1",
"@babel/preset-env": "^7.11.0",
"@babel/preset-typescript": "^7.10.4",
"@commitlint/cli": "^9.1.1",
"@commitlint/config-conventional": "^9.1.1",
"@testing-library/react-hooks": "^3.4.1",
"@types/jest": "^26.0.10",
"@types/js-cookie": "^2.2.6",
"@typescript-eslint/eslint-plugin": "^3.9.0",
"@typescript-eslint/parser": "^3.9.0",
"commitizen": "^4.2.1",
"cz-conventional-changelog": "^3.3.0",
"del": "^5.1.0",
"eslint": "^7.6.0",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-react-hooks": "^4.0.8",
"gulp": "^4.0.2",
"gulp-babel": "^8.0.0",
"gulp-cli": "^2.3.0",
"gulp-typescript": "^6.0.0-alpha.1",
"husky": "^4.2.5",
"jest": "^26.4.1",
"lint-staged": "^10.2.11",
"prettier": "^2.0.5",
"react-test-renderer": "^16.13.1",
"standard-version": "^9.0.0",
"ts-import-plugin": "^1.6.6",
"ts-jest": "^26.2.0",
"ts-loader": "^8.0.7",
"typescript": "^3.9.5",
"uglifyjs-webpack-plugin": "^2.2.0",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.9"
},
"peerDependencies": {
"react": "^16.8.6"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"engines": {
"node": ">=8.0.0"
}
}