-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
32 lines (32 loc) · 928 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
28
29
30
31
32
{
"name": "numbers-ts",
"version": "0.0.1",
"private": true,
"description": "Monorepo containing numerical codecs and arbitraries",
"homepage": "https://github.com/EricCrosson/numbers-ts#readme",
"bugs": {
"url": "https://github.com/EricCrosson/numbers-ts/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/EricCrosson/numbers-ts.git"
},
"license": "ISC",
"author": "Eric Crosson",
"workspaces": [
"packages/*"
],
"scripts": {
"build": "tsc --build --incremental --verbose .",
"clean": "npm run --workspaces clean",
"test": "npm run --workspaces test"
},
"devDependencies": {
"@semantic-release-extras/github-comment-specific": "1.0.7",
"@semantic-release/changelog": "6.0.3",
"@semantic-release/git": "10.0.1",
"multi-semantic-release": "3.0.2",
"patch-semantic-release-npm-for-msr": "1.0.0",
"typescript": "5.0.4"
}
}