forked from herbsjs/herbs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
71 lines (71 loc) · 1.88 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": "@herbsjs/herbs",
"version": "1.6.2",
"description": "A domain-first framework. Code your domain and your infrastructure will follow",
"main": "src/commonjs/herbs.cjs",
"module": "src/esm/herbs.mjs",
"scripts": {
"test": "mocha --timeout 999999 --colors --recursive ./test",
"lint:fix": "npx eslint \"**/*.{js,jsx}\" --fix",
"lint": "npx eslint \"**/*.{js,jsx}\" --quiet",
"semantic-release": "semantic-release",
"coverage": "nyc --reporter=html mocha ./test npm test",
"commit": "cz"
},
"engines": {
"node": ">= 14.x"
},
"exports": {
"import": "./src/esm/herbs.mjs",
"require": "./src/commonjs/herbs.cjs"
},
"directories": {
"lib": "src"
},
"keywords": [
"entity",
"value object",
"use case",
"clean architecture",
"herbsjs",
"herbs"
],
"devDependencies": {
"@babel/eslint-parser": "^7.18.9",
"@semantic-release/changelog": "^6.0.1",
"@semantic-release/commit-analyzer": "^9.0.2",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^8.0.5",
"@semantic-release/npm": "^9.0.1",
"@semantic-release/release-notes-generator": "^10.0.3",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.22.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-prettier": "^4.2.1",
"mocha": "^10.0.0",
"nyc": "^15.1.0",
"prettier": "^2.7.1",
"semantic-release": "^19.0.3"
},
"author": "Jhonathan de Souza Soares",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/herbsjs/herbs.git"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"publishConfig": {
"access": "public"
},
"dependencies": {
"@herbsjs/aloe": "1.0.3",
"@herbsjs/buchu": "2.1.0",
"@herbsjs/gotu": "1.2.0",
"@herbsjs/suma": "1.3.1"
}
}