-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
90 lines (90 loc) · 2.08 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
{
"name": "use-cornify",
"description": "🦄 Put unicorns and rainbows on any website on the Internet with a single React Hook!",
"version": "0.0.0-development",
"license": "MIT",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"module": "dist/use-cornify.esm.js",
"homepage": "https://github.com/daphnesmit/use-cornify#readme",
"author": "Daphne Smit",
"sideEffects": false,
"keywords": [
"react",
"react-use",
"hooks",
"unicorn",
"rainbows",
"cornify",
"daphne"
],
"contributors": [
{
"name": "Daphne Smit",
"email": "[email protected]"
}
],
"repository": {
"type": "git",
"url": "https://github.com/daphnesmit/use-cornify"
},
"files": [
"dist"
],
"scripts": {
"commitmsg": "npx commitlint -e $GIT_PARAMS",
"commit": "commit",
"start": "tsdx watch",
"build": "tsdx build",
"test": "tsdx test --passWithNoTests",
"lint": "tsdx lint",
"prepare": "tsdx build",
"semantic-release": "semantic-release"
},
"release": {
"branches": [
"master",
{
"name": "develop",
"prerelease": true
}
],
"plugins": [
"@semantic-release/npm",
"@semantic-release/github",
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator"
]
},
"peerDependencies": {
"react": ">=16",
"react-dom": ">=16"
},
"husky": {
"hooks": {
"pre-commit": "tsdx lint",
"commit-msg": "npm run commitmsg",
"pre-push": "npm run test"
}
},
"dependencies": {
"react-use-konami": "^1.0.13"
},
"devDependencies": {
"@commitlint/cli": "^11.0.0",
"@commitlint/config-angular": "^11.0.0",
"@commitlint/prompt": "^11.0.0",
"@commitlint/prompt-cli": "^11.0.0",
"@types/jest": "^26.0.20",
"@types/react": "^17.0.0",
"@types/react-dom": "^17.0.0",
"husky": "^4.3.8",
"prettier": "^2.2.1",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"semantic-release": "^17.3.3",
"tsdx": "^0.14.1",
"tslib": "^2.1.0",
"typescript": "^4.1.3"
}
}