-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
90 lines (90 loc) · 3.18 KB
/
package.json
File metadata and controls
90 lines (90 loc) · 3.18 KB
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
{
"name": "donews",
"author": "toonew",
"private": true,
"scripts": {
"prepare": "husky",
"build": "gulp build",
"prebuild:prod": "npm run clean",
"build:prod": "gulp build",
"build:samples": "npm run build:prod && gulp test:samples && gulp test:e2e:samples",
"clean": "gulp clean:bundle",
"format": "prettier \"**/*.ts\" --ignore-path ./.prettierignore --write && git status",
"test": "nyc mocha packages/**/*.spec.ts --reporter spec",
"lint": "concurrently \"npm run lint:packages\" \"npm run lint:spec\"",
"lint:fix": "concurrently \"npm run lint:packages -- --fix\" \"npm run lint:spec -- --fix\"",
"lint:packages": "eslint \"packages/**/**.ts\" --ignore-pattern \"packages/**/*.spec.ts\"",
"lint:spec": "eslint \"packages/**/**.spec.ts\" -c \"eslint.config.spec.mjs\"",
"prerelease": "gulp copy-misc",
"publish": " npm run prerelease && npm run build:prod && npx lerna publish --exact --force-publish -m \"chore(@donews): publish %s release\"",
"publish:beta": "npm run prerelease && npm run build:prod && npx lerna publish --dist-tag=beta -m \"chore(@donews): publish %s release\"",
"publish:next": "npm run prerelease && npm run build:prod && npx lerna publish --dist-tag=next --no-push --no-git-tag-version -m \"chore(@donews): publish %s release\"",
"publish:rc": " npm run prerelease && npm run build:prod && npx lerna publish --dist-tag=rc -m \"chore(@donews): publish %s release\"",
"publish:test": "npm run prerelease && npm run build:prod && npx lerna publish --dist-tag=test --no-push --no-git-tag-version --force-publish -m \"chore(@donews): publish %s release\""
},
"lint-staged": {
"packages/**/*.{ts,json}": [
"prettier --ignore-path ./.prettierignore --write"
]
},
"devDependencies": {
"@commitlint/cli": "20.5.2",
"@commitlint/config-angular": "20.5.0",
"@donews/eslint-config-donews": "1.0.3",
"@eslint/js": "^10.0.0",
"@types/gulp": "4.0.18",
"@types/mocha": "10.0.10",
"@types/node": "24.12.2",
"@types/sinon": "21.0.1",
"@typescript-eslint/eslint-plugin": "8.59.1",
"@typescript-eslint/parser": "8.59.1",
"cli-color": "2.0.4",
"concurrently": "9.2.1",
"delete-empty": "3.0.0",
"eslint": "10.2.1",
"eslint-config-prettier": "10.1.8",
"eslint-plugin-import": "2.32.0",
"eslint-plugin-prettier": "^5.2.3",
"fancy-log": "2.0.0",
"globals": "^17.0.0",
"gulp": "5.0.1",
"gulp-clean": "0.4.0",
"gulp-sourcemaps": "3.0.0",
"gulp-typescript": "5.0.1",
"husky": "9.1.7",
"lerna": "9.0.7",
"lint-staged": "16.4.0",
"mocha": "11.7.5",
"nx": "^22.0.0",
"nyc": "18.0.0",
"prettier": "3.8.3",
"reflect-metadata": "0.2.2",
"sinon": "21.1.2",
"ts-node": "10.9.2",
"typescript": "6.0.3",
"typescript-eslint": "^8.26.0"
},
"packageManager": "pnpm@10.5.2",
"nyc": {
"include": [
"packages/**/*.ts"
],
"exclude": [
"**/*.js",
"**/*.d.ts",
"**/*.spec.ts"
],
"extension": [
".ts"
],
"require": [
"ts-node/register"
],
"reporter": [
"text-summary",
"html"
],
"sourceMap": true,
"instrument": true
}
}