forked from JamesSingleton/hooks-arsenal
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
93 lines (93 loc) · 2.46 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
{
"name": "hooks-arsenal",
"version": "1.5.0",
"description": "An arsenal of React Hooks... aka, a React Hooks library",
"main": "lib/index.js",
"module": "lib/index.esm.js",
"scripts": {
"build": "npm run clean && rollup -c",
"clean": "rimraf lib",
"lint": "eslint src",
"prepack": "npm run lint && npm run build",
"test": "jest",
"test:coverage": "jest --coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/JamesSingleton/hooks-arsenal.git"
},
"keywords": [
"hook",
"react",
"react hooks",
"react library",
"arsenal",
"hooks",
"hooks arsenal",
"utils",
"react utils"
],
"author": "James Singleton",
"license": "MIT",
"bugs": {
"url": "https://github.com/JamesSingleton/hooks-arsenal/issues"
},
"homepage": "https://github.com/JamesSingleton/hooks-arsenal#readme",
"devDependencies": {
"@commitlint/cli": "11.0.0",
"@commitlint/config-conventional": "11.0.0",
"@semantic-release/changelog": "5.0.1",
"@semantic-release/commit-analyzer": "8.0.1",
"@semantic-release/git": "9.0.0",
"@semantic-release/npm": "7.0.6",
"@semantic-release/release-notes-generator": "9.0.1",
"@testing-library/react": "11.0.4",
"@testing-library/react-hooks": "3.4.2",
"amex-jest-preset-react": "6.1.0",
"babel-preset-amex": "3.4.1",
"eslint": "7.10.0",
"eslint-config-amex": "13.1.0",
"eslint-plugin-jest": "24.1.0",
"husky": "4.3.0",
"jest": "26.5.2",
"lint-staged": "10.4.0",
"react": "16.13.1",
"react-dom": "16.13.1",
"react-test-renderer": "16.13.1",
"rollup": "2.28.2",
"rollup-plugin-babel": "4.4.0",
"rollup-plugin-commonjs": "10.1.0",
"rollup-plugin-node-resolve": "5.2.0",
"rollup-plugin-terser": "7.0.2",
"semantic-release": "17.1.2"
},
"peerDependencies": {
"react": "^16.8.0"
},
"lint-staged": {
"src/**/*.{js,jsx,ts,tsx,json,css,scss,md}": [
"eslint --fix",
"git add"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged && npm test",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"release": {
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/changelog",
"@semantic-release/npm",
"@semantic-release/git",
"@semantic-release/github"
],
"branch": "master"
},
"dependencies": {
"prop-types": "^15.7.2"
}
}