-
Notifications
You must be signed in to change notification settings - Fork 68
/
Copy pathpackage.json
31 lines (31 loc) · 874 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
{
"name": "@diablo2/core",
"version": "0.0.1",
"private": true,
"repository": "https://github.com/blacha/diablo2.git",
"author": {
"name": "Blayne Chard",
"email": "blayne@chard.com"
},
"type": "module",
"license": "MIT",
"scripts": {
"build": "tsc -b",
"bump": "npx lerna version --conventional-commits --no-push --sign-git-commit --sign-git-tag -m 'release: %s'",
"lint": "eslint \"packages/*/src/**/*.ts\" --quiet --fix --report-unused-disable-directives",
"clean": "tsc -b --clean && rimraf 'packages/*/build'",
"test": "npx lerna run test --parallel"
},
"devDependencies": {
"@linzjs/style": "^3.0.0",
"@types/node": "^16.11.7",
"@types/ospec": "^4.0.2",
"lerna": "^4.0.0",
"ospec": "^4.0.1",
"rimraf": "^3.0.2",
"source-map-support": "^0.5.19"
},
"workspaces": [
"packages/*"
]
}