-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathpackage.json
27 lines (27 loc) · 916 Bytes
/
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
{
"name": "strongly-typed-events-mono-root",
"private": true,
"dependencies": {
"strongly-typed-events": "*"
},
"devDependencies": {
"lerna": "^7.1.4",
"@types/chai": "^4.3.5",
"@types/mocha": "^10.0.1",
"@types/node": "^20.4.9",
"chai": "^4.3.7",
"del-cli": "^5.0.0",
"mocha": "^10.2.0",
"ts-node": "^10.9.1",
"typescript": "^5.1.6",
"webpack": "^5.88.2",
"webpack-cli": "^5.1.4",
"trim-newlines": ">=5.0.0"
},
"scripts": {
"build": "lerna bootstrap --hoist & lerna run build",
"test": "lerna run test",
"make": "lerna run build && lerna publish --yes --bump patch & git add . & git commit -m Version-bump & git push ",
"make-feature": "lerna run build && lerna publish --yes --bump minor & git add . & git commit -m Version-bump & git push "
}
}