-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
68 lines (68 loc) · 1.69 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
{
"name": "react-event-param",
"version": "1.0.1",
"description": "Provide custom param to DOM event handler. Avoid memory-consuming bindings or arrow functions.",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"scripts": {
"build": "rimraf dist && tsc",
"commit": "npx git-cz",
"precommit": "lint-staged",
"test": "jest"
},
"repository": {
"type": "git",
"url": "https://github.com/sneas/react-event-param.git"
},
"keywords": [
"react",
"event",
"callback",
"param"
],
"author": "Dima Snisarenko <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/sneas/react-event-param/issues"
},
"homepage": "https://github.com/sneas/react-event-param#readme",
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"lint-staged": {
"src/**/*.ts": [
"prettier --single-quote --trailing-comma all --tab-width 4 --write",
"git add"
]
},
"devDependencies": {
"@semantic-release/git": "^7.0.8",
"@types/jest": "^24.0.9",
"commitizen": "3.0.7",
"cz-conventional-changelog": "2.1.0",
"husky": "1.3.1",
"jest": "^24.1.0",
"lint-staged": "8.1.4",
"prettier": "1.16.4",
"rimraf": "^2.6.3",
"semantic-release": "^15.13.3",
"ts-jest": "^24.0.0",
"typescript": "3.3.3333"
},
"release": {
"branch": "master",
"prepare": [
"@semantic-release/npm",
{
"path": "@semantic-release/git",
"assets": [
"package.json",
"package-lock.json"
],
"message": "chore(release): ${nextRelease.version} [skip ci]\n\n${nextRelease.notes}"
}
]
}
}