-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
111 lines (111 loc) · 2.76 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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
{
"metapak": {
"configs": [
"main",
"readme",
"ghactions"
],
"data": {
"ignore": [
"dist",
"builds",
".bin",
".terraform",
"*.plan",
"*.tfstate.d",
"*.credentials.json",
".nx"
],
"rootPackage": true
}
},
"name": "whook",
"version": "0.0.0",
"description": "Build strong and efficient REST web services.",
"private": true,
"workspaces": [
"./packages/*"
],
"scripts": {
"build": "npm run lerna -- run build",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s -k packages/whook/package.json && git add CHANGELOG.md",
"cli": "env NODE_ENV=${NODE_ENV:-cli}",
"cover": "lerna run cover",
"cz": "env NODE_ENV=${NODE_ENV:-cli} git cz",
"format": "lerna run format",
"lerna": "lerna",
"lint": "lerna run lint",
"metapak": "metapak",
"postmetapak": "npm run lerna -- run metapak",
"precz": "npm run lint && npm run build && npm t && npm run metapak -- -s && npm run lerna -- run --parallel metapak -- -- -s",
"prettier": "lerna run prettier",
"preversion": "npm run lint && NODE_ENV=test npm run build && npm t && npm run metapak -- -s && npm run lerna -- run --parallel metapak -- -- -s",
"test": "lerna run test",
"version": "npm run changelog"
},
"author": {
"name": "Nicolas Froidure",
"email": "[email protected]",
"url": "http://insertafter.com/en/index.html"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/nfroidure/whook.git"
},
"bugs": {
"url": "https://github.com/nfroidure/whook/issues"
},
"homepage": "https://github.com/nfroidure/whook",
"devDependencies": {
"commitizen": "^4.3.1",
"conventional-changelog-cli": "^5.0.0",
"cz-conventional-changelog": "^3.3.0",
"lerna": "^8.1.6",
"metapak": "^6.0.1",
"metapak-nfroidure": "19.0.1"
},
"contributors": [
{
"name": "Vincent Da Silva",
"email": "[email protected]",
"url": "https://dasilvavincent.github.io/PortFolio/"
},
{
"name": "Ayoub HAD-DAD",
"email": "[email protected]",
"url": "https://github.com/AubHaddad"
}
],
"engines": {
"node": ">=20.11.1"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"prettier": {
"semi": true,
"printWidth": 80,
"singleQuote": true,
"trailingComma": "es5",
"proseWrap": "always"
},
"files": [
"src",
"LICENSE",
"README.md",
"CHANGELOG.md"
],
"greenkeeper": {
"ignore": [
"commitizen",
"cz-conventional-changelog",
"conventional-changelog-cli"
]
},
"overrides": {
"eslint": "^9.7.0"
}
}