forked from tj/react-click-outside
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
71 lines (71 loc) · 1.6 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
{
"name": "@digitalrelab/rco",
"version": "2.0.1",
"description": "ClickOutside component for React",
"keywords": [
"react",
"click",
"outside",
"component"
],
"main": "dist/index.js",
"author": "DigitalReLab, LLC.",
"license": "MIT",
"scripts": {
"build": "microbundle",
"commit": "git-cz",
"release": "yarn build && ./release.sh"
},
"devDependencies": {
"@semantic-release/changelog": "^3.0.2",
"@semantic-release/git": "^7.0.8",
"@semantic-release/release-notes-generator": "^7.1.4",
"@types/react": "^16.8.10",
"@typescript-eslint/eslint-plugin": "^1.5.0",
"@typescript-eslint/parser": "^1.5.0",
"commitizen": "^3.0.7",
"cz-conventional-changelog": "^2.1.0",
"eslint": "^5.15.3",
"microbundle": "^0.11.0",
"parcel-bundler": "^1.12.3",
"prop-types": "^15.5.8",
"semantic-release": "^15.13.3",
"typescript": "^3.3.4000"
},
"peerDependencies": {
"react": "^16.8.5"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"release": {
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
[
"@semantic-release/changelog",
{
"changelogFile": "CHANGELOG.md"
}
],
[
"@semantic-release/npm",
{
"tarballDir": "dist"
}
],
[
"@semantic-release/git",
{
"assets": [
"CHANGELOG.md",
"package.json",
"./dist/**/*.{js,ts}"
]
}
]
]
}
}