forked from codsen/codsen
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
73 lines (73 loc) · 2.78 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "codsen-monorepo",
"version": "0.0.0-ignore",
"description": "Monorepo of all our npm libraries",
"license": "MIT",
"private": true,
"engines": {
"node": ">=16"
},
"repository": "https://gitlab.com/codsen/codsen/",
"homepage": "https://codsen.com",
"author": "Roy Revelt <[email protected]>",
"type": "module",
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"scripts": {
"bootstrap": "FORCE_COLOR=1 npx lerna bootstrap --hoist --ignore-scripts",
"build": "lerna run ci_test --bail --concurrency 1 && npm run seed && npm run readme:generate",
"build:just": "lerna run build --bail --concurrency 1",
"cm": "git-cz -n",
"changed": "lerna changed",
"format": "lerna run format",
"fresh": "npm run wipe && npm run bootstrap && npm run build",
"info": "node ./scripts/generate-info.js",
"lect": "make run-lect",
"lerna": "lerna",
"pub:vers": "lerna version --conventional-commits --no-commit-hooks --yes && lernacleanchangelog '**'",
"readme:generate": "node ./scripts/generate-readme.js",
"republish": "lerna run republish",
"test": "FORCE_COLOR=1 lerna run ci_test && npm run readme:generate",
"test:full": "FORCE_COLOR=1 lerna run test --bail --concurrency 1 && npm run readme:generate && npm run info",
"test:only": "FORCE_COLOR=1 lerna run unittest --bail --concurrency 1 && npm run readme:generate && npm run info",
"test:examples": "FORCE_COLOR=1 lerna run test:examples",
"wipe": "rm package-lock.json || true && rm -rf node_modules && FORCE_COLOR=1 npx lerna clean -y",
"graph": "lerna-dependency-graph -f 'png' -o './deps-graph.png'",
"checkPublishedSizeLimit": "node ./scripts/check100MBLimit.js",
"patchRollupBinExit": "node ./scripts/patchRollupBinExit.js",
"packageExamples": "node ./scripts/packageExamples.js",
"seed": "node ./scripts/playgrounds.js"
},
"dependencies": {},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.3.0",
"@typescript-eslint/parser": "^5.3.0",
"axios": "^0.24.0",
"benchmark": "^2.1.4",
"commitizen": "^4.2.4",
"cz-conventional-changelog": "^3.3.0",
"edit-package-json": "^0.5.4",
"esbuild": "^0.13.12",
"eslint": "^8.2.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-row-num": "^2.0.1",
"eslint-plugin-test-num": "^2.0.1",
"esm": "^3.2.25",
"execa": "^5.1.1",
"lect": "^0.18.4",
"lerna": "^4.0.0",
"lerna-clean-changelogs-cli": "^2.0.4",
"lerna-dependency-graph": "^1.1.0",
"object-path": "^0.11.8",
"prettier": "^2.4.1",
"simple-git": "^2.47.0",
"tap-parse-string-to-object": "^3.0.4",
"title": "^3.4.3",
"typescript": "^4.4.4",
"write-file-atomic": "^3.0.3"
}
}