-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.04 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
{
"name": "use-omise",
"version": "1.2.1",
"description": "A React hook for Omise payments",
"author": "Chris Vibert",
"license": "MIT",
"main": "build/index.js",
"types": "build/index.d.ts",
"typings": "build/index.d.ts",
"files": [
"/build"
],
"scripts": {
"build": "rm -rf build && tsc",
"prepublishOnly": "yarn test && yarn build",
"preversion": "yarn test",
"test": "jest"
},
"repository": {
"type": "git",
"url": "https://github.com/cpv123/use-omise"
},
"keywords": [
"react",
"omise"
],
"devDependencies": {
"@testing-library/react-hooks": "^3.7.0",
"@types/jest": "^26.0.19",
"@types/react": "^17.0.0",
"husky": "^4.3.6",
"jest": "^26.6.3",
"prettier": "^2.2.1",
"pretty-quick": "^3.1.0",
"react": "^17.0.1",
"react-test-renderer": "^17.0.1",
"ts-jest": "^26.4.4",
"typescript": "^4.1.3"
},
"peerDependencies": {
"react": "^16.8.0 || ^17.0.0"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
}
}