-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.7 KB
/
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
33
34
35
36
37
38
39
40
41
42
43
44
{
"name": "jsville",
"description": "Monorepo hosting a collection of javascript utility packages",
"version": "1.0.0",
"author": "Busticated",
"license": "UNLICENSED",
"private": true,
"workspaces": [
"./packages/*"
],
"scripts": {
"start": "echo \"Error: no source code available\" && exit 1",
"test": "npm run lint && npm run typecheck && npm run test --workspaces",
"lint": "eslint . --ext .js,.jsx,.mjs,.ts,.tsx --ignore-path .gitignore",
"lint:fix": "npm run lint -- --fix",
"typecheck": "npm run typecheck --workspaces",
"build": "npm run build --workspaces",
"clean": "npm run clean --workspaces",
"clean:modules": "npm run clean:modules --workspaces",
"docs:build": "npm run docs:build --workspaces",
"package:create": "node ./bin/create-package.mjs",
"package:list": "npm list --workspaces",
"package:publish": "lerna publish from-package --yes --no-verify-access",
"changelog:show": "npm run changelog:show --workspaces",
"changelog:update": "npm run changelog:update --workspaces",
"release:dry-run": "lerna exec -- npm pack --dry-run --loglevel notice && lerna changed",
"release": "lerna version",
"todo": "git grep -P -e 'TODO\\s?(.*)' --ignore-case --heading --break --context=2 --full-name --line-number -- :^./package.json :^./README.md"
},
"devDependencies": {
"@types/node": "^20.10.3",
"@typescript-eslint/eslint-plugin": "^6.13.2",
"@typescript-eslint/parser": "^6.13.2",
"enquirer": "^2.4.1",
"eslint": "^8.55.0",
"execa": "^8.0.1",
"fs-extra": "^11.2.0",
"lerna": "^8.0.0",
"lodash": "^4.17.21",
"tshy": "^1.8.1",
"typedoc": "^0.25.4",
"typedoc-plugin-markdown": "^3.17.1"
}
}