-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
58 lines (58 loc) · 1.23 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
{
"name": "reekwire",
"version": "0.0.0-development",
"description": "Workaround for using CommonJS named exports in ES modules.",
"main": "index.js",
"type": "module",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/reactioncommerce/reekwire.git"
},
"files": [
"index.js",
"LICENSE",
"README.md"
],
"keywords": [
"commonjs",
"esmodules",
"import",
"workaround"
],
"author": "Reaction Commerce <[email protected]>",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/reactioncommerce/reekwire/issues"
},
"homepage": "https://github.com/reactioncommerce/reekwire#readme",
"dependencies": {
"callsite": "^1.0.0"
},
"devDependencies": {
"@commitlint/cli": "^8.3.5",
"@commitlint/config-conventional": "^8.3.4",
"husky": "^4.2.1",
"semantic-release": "^17.0.2"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"publishConfig": {
"access": "public"
},
"release": {
"branches": [
"trunk"
]
}
}