-
-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
104 lines (104 loc) · 2.71 KB
/
package.json
File metadata and controls
104 lines (104 loc) · 2.71 KB
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
{
"metapak": {
"configs": [
"main",
"readme",
"ghactions"
],
"data": {
"ignore": [
"dist",
"builds",
".bin",
".terraform",
"*.plan",
"*.tfstate.d",
"*.credentials.json",
".nx",
".cursor/rules/nx-rules.mdc",
".github/instructions/nx.instructions.md"
],
"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}",
"commitlint": "commitlint",
"cover": "lerna run cover",
"format": "lerna run format",
"lerna": "lerna",
"lint": "lerna run lint",
"metapak": "metapak",
"precommit": "node --run lint && NODE_ENV=test node --run build && node --run test && node --run lerna -- run --parallel metapak -- -s && node --run metapak -- -s",
"prettier": "lerna run prettier",
"preversion": "node --run lint && NODE_ENV=test node --run build && node --run test && node --run lerna -- run --parallel metapak -- -s && node --run metapak -- -s",
"test": "lerna run test",
"version": "node --run changelog"
},
"author": {
"name": "Nicolas Froidure",
"email": "nicolas.froidure@insertafter.com",
"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": {
"@commitlint/cli": "^20.5.0",
"@commitlint/config-conventional": "^20.5.0",
"conventional-changelog": "^7.2.0",
"lerna": "9.0.7",
"metapak": "^7.1.1",
"metapak-nfroidure": "22.1.2"
},
"contributors": [
{
"name": "Vincent Da Silva",
"email": "dasilva.vincent.pro2@gmail.com",
"url": "https://dasilvavincent.github.io/PortFolio/"
},
{
"name": "Ayoub HAD-DAD",
"email": "aub.haddad@gmail.com",
"url": "https://github.com/AubHaddad"
}
],
"engines": {
"node": ">=24.14.0"
},
"prettier": {
"semi": true,
"printWidth": 80,
"singleQuote": true,
"trailingComma": "es5",
"proseWrap": "always"
},
"files": [
"src",
"LICENSE",
"README.md",
"CHANGELOG.md"
],
"overrides": {
"eslint": "^9.7.0"
},
"funding": {
"type": "individual",
"url": "https://github.com/sponsors/nfroidure"
}
}