-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.46 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.46 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
{
"name": "scripts",
"version": "0.0.0",
"description": "GitHub Actions helper scripts",
"type": "module",
"private": true,
"dependencies": {
"@crowdin/crowdin-api-client": "1.55.1",
"@octokit/rest": "22.0.1"
},
"devDependencies": {
"@babel/core": "7.29.0",
"@babel/preset-env": "7.29.2",
"@eslint/js": "10.0.1",
"@jest/globals": "30.3.0",
"ajv": "8.18.0",
"babel-plugin-transform-import-meta": "^2.3.3",
"eslint": "10.2.1",
"eslint-plugin-jest": "29.15.2",
"globals": "17.5.0",
"jest": "30.3.0",
"jest-junit": "16.0.0",
"npm-run-all2": "8.0.4"
},
"jest": {
"collectCoverageFrom": [
"src/**/*.{js,cjs}"
],
"testEnvironment": "node",
"transform": {
"^.+\\.(js|cjs)$": "babel-jest"
},
"transformIgnorePatterns": [
"/node_modules/(?!(@crowdin|@octokit)/)"
]
},
"scripts": {
"build": "echo \"No build step required\"",
"start:distribution": "node --env-file=.env src/sync-crowdin-distribution.cjs",
"start:en-us": "node --env-file=.env src/sync-crowdin-en-us.js",
"start:issues": "node --env-file=.env src/sync-crowdin-issues.js",
"start:progress": "node --env-file=.env src/crowdin-progress.js",
"test": "npm-run-all test:schema test:unit test:report test:lint",
"test:schema": "node src/validate-language-managers.js",
"test:unit": "jest --coverage",
"test:report": "jest --reporters=jest-junit",
"test:lint": "eslint ."
}
}