-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
113 lines (113 loc) · 3.53 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
{
"name": "root",
"private": true,
"devDependencies": {
"@appnest/readme": "1.2.7",
"@donmahallem/eslint-config": "2.0.69",
"@donmahallem/lerna-fixer": "0.1.29",
"@donmahallem/nx-prettier": "1.0.66",
"@donmahallem/rollup-config": "4.1.66",
"@nrwl/workspace": "15.9.7",
"@rollup/plugin-commonjs": "28.0.1",
"@rollup/plugin-json": "6.1.0",
"@rollup/plugin-node-resolve": "15.3.0",
"@rollup/plugin-replace": "6.0.1",
"@rollup/plugin-typescript": "12.1.1",
"@types/chai": "5.0.1",
"@types/mocha": "10.0.10",
"@types/node": "22.10.1",
"@types/proxyquire": "1.3.31",
"@types/sinon": "17.0.3",
"c8": "10.1.2",
"chai": "5.1.2",
"colors": "1.4.0",
"commitizen": "4.3.1",
"conventional-changelog-angular": "8.0.0",
"conventional-changelog-cli": "5.0.0",
"coveralls": "3.1.1",
"cz-conventional-changelog": "3.3.0",
"eslint": "9.16.0",
"fs-extra": "11.2.0",
"lerna": "6.6.2",
"mocha": "10.8.2",
"nx": "15.9.7",
"nyc": "17.1.0",
"proxyquire": "2.1.3",
"rollup": "4.28.0",
"rollup-plugin-delete": "2.1.0",
"rollup-plugin-dts": "6.1.1",
"sinon": "19.0.2",
"ts-node": "10.9.2",
"tslib": "2.8.1",
"tslint": "6.1.3",
"typedoc": "0.27.2",
"typescript": "5.7.2"
},
"scripts": {
"build": "lerna run build",
"prebuild:readme": "node ./scripts/extract_packages.js",
"postbuild:readme": "node ./scripts/extract_packages.js clear",
"build:readme": "npx @appnest/readme generate --input readme_blueprint.md --config readme_config_root.json && nx run-many --target=build:readme --all",
"test": "lerna run test",
"test:coverage": "lerna run test:coverage",
"coverage:merge": "node ./scripts/merge_coverage.js",
"lint": "lerna run lint",
"docs": "typedoc --entryPointStrategy packages --out ./docs .",
"lint:fix": "lerna run lint:fix",
"version": "npx @donmahallem/lerna-fixer lockfile fixversion && npm run build:readme && git add README.md",
"changelog": "node ./scripts/create_changelog.js",
"create:release": "npx lerna version --create-release github --sign-git-tag --sign-git-commit"
},
"nyc": {
"include": [
"src/*.ts",
"src/**/*.ts"
],
"exclude": [
"typings",
"src/**/*.spec.ts",
"**/*.d.ts"
],
"extension": [
".ts"
],
"require": [
"ts-node/register"
],
"reporter": [
"json",
"html",
"text-summary",
"lcov"
],
"sourceMap": true,
"instrument": true,
"all": true
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"homepage": "https://donmahallem.github.io/js-libs/",
"author": {
"name": "donmahallem",
"email": "[email protected]",
"url": "https://github.com/donmahallem"
},
"engines": {
"node": ">=14",
"npm": ">=7"
},
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/donmahallem/js-libs/issues"
},
"workspaces": [
"packages/*"
],
"repository": {
"type": "git",
"url": "https://github.com/donmahallem/js-libs.git"
}
}