-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1.39 KB
/
package.json
File metadata and controls
36 lines (36 loc) · 1.39 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
{
"name": "dorders",
"private": true,
"description": "A system helping two parties to exchange remotely information to fulfilled local deals.",
"license": "MIT",
"author": "Thibault Morin",
"homepage": "https://github.com/tmorin/dorders",
"bugs": {
"url": "https://github.com/tmorin/dorders/issues"
},
"repository": {
"type": "git",
"url": "git@github.com:tmorin/dorders.git"
},
"scripts": {
"bootstrap": "lerna bootstrap",
"build": "lerna run build",
"clean": "lerna run clean --parallel && rimraf coverage",
"g:paper": "gdiag --wd=paper",
"jest": "jest --runInBand --detectOpenHandles --coverage",
"paper:build": "npm run g:paper && ./scripts/generate-paper.sh",
"pre:release": "lerna version prerelease --conventional-commits --no-changelog --no-git-tag-version --yes && git commit -a -m 'chore(release): bump preprelease version' && git push && lerna publish from-package --yes",
"release": "lerna version --conventional-commits --conventional-graduate --yes",
"reset": "lerna run clean --parallel && lerna exec rimraf node_modules && rimraf node_modules coverage",
"test": "lerna run test --stream --concurrency=1"
},
"devDependencies": {
"@tmorin/plantuml-libs": "^2.8.0",
"@types/jest": "^26.0.20",
"jest": "^26.6.3",
"lerna": "^3.22.1",
"rimraf": "^3.0.2",
"ts-jest": "^26.5.1",
"typescript": "^4.1.5"
}
}