-
Notifications
You must be signed in to change notification settings - Fork 194
/
package.json
97 lines (97 loc) · 4.05 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
{
"name": "scratch-l10n",
"version": "4.0.14",
"description": "Localization for the Scratch 3.0 components",
"main": "./dist/l10n.js",
"browser": "./src/index.mjs",
"bin": {
"build-i18n-src": "./scripts/build-i18n-src.js",
"tx-push-src": "./scripts/tx-push-src.js"
},
"scripts": {
"build": "npm run clean && npm run build:data && webpack --progress --colors --bail",
"build:data": "node scripts/build-data.mjs",
"clean": "rimraf ./dist ./locales && mkdirp dist locales",
"lint": "npm run lint:js && npm run lint:json",
"lint:js": "eslint . --ext .js,.mjs,.cjs",
"lint:json": "jshint -e .json www editor/blocks editor/extensions editor/interface editor/paint-editor",
"prepare": "husky install",
"pull:blocks": "node scripts/tx-pull-editor.mjs scratch-editor blocks ./editor/blocks/",
"pull:editor": "npm run pull:blocks && npm run pull:extensions && npm run pull:paint && npm run pull:interface",
"pull:extensions": "node scripts/tx-pull-editor.mjs scratch-editor extensions ./editor/extensions/",
"pull:help": "npm run pull:help:names && npm run pull:help:articles",
"pull:help:articles": "./scripts/tx-pull-help-articles.js",
"pull:help:names": "./scripts/tx-pull-help-names.js",
"pull:interface": "node scripts/tx-pull-editor.mjs scratch-editor interface ./editor/interface/",
"pull:paint": "node scripts/tx-pull-editor.mjs scratch-editor paint-editor ./editor/paint-editor/",
"pull:www": "node scripts/tx-pull-www.mjs ./www",
"push:help": "./scripts/tx-push-help.mjs",
"sync:help": "npm run push:help && npm run pull:help",
"test": "npm run lint:js && npm run validate:editor && npm run validate:www && npm run build && npm run lint:json",
"update": "scripts/update-translations.sh",
"validate:blocks": "node scripts/validate-translations.mjs ./editor/blocks/",
"validate:editor": "npm run validate:blocks && npm run validate:extensions && npm run validate:interface && npm run validate:paint",
"validate:extensions": "node scripts/validate-translations.mjs ./editor/extensions/ && node scripts/validate-extension-inputs.mjs",
"validate:interface": "node scripts/validate-translations.mjs ./editor/interface/",
"validate:paint": "node scripts/validate-translations.mjs ./editor/paint-editor/",
"validate:www": "node scripts/validate-www.mjs ./www"
},
"repository": {
"type": "git",
"url": "git+https://github.com/scratchfoundation/scratch-l10n.git"
},
"author": "Massachusetts Institute of Technology",
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/scratchfoundation/scratch-l10n/issues"
},
"homepage": "https://github.com/scratchfoundation/scratch-l10n#readme",
"dependencies": {
"@transifex/api": "4.3.0",
"download": "8.0.0",
"transifex": "1.6.6"
},
"devDependencies": {
"@babel/cli": "7.25.9",
"@babel/core": "7.26.0",
"@babel/eslint-parser": "7.25.9",
"@babel/node": "7.26.0",
"@babel/plugin-proposal-object-rest-spread": "7.20.7",
"@babel/plugin-syntax-dynamic-import": "7.8.3",
"@babel/plugin-transform-async-to-generator": "7.25.9",
"@babel/preset-env": "7.26.0",
"@babel/preset-react": "7.25.9",
"@commitlint/cli": "18.6.1",
"@commitlint/config-conventional": "18.6.3",
"async": "3.2.6",
"babel-eslint": "10.1.0",
"babel-loader": "8.4.1",
"babel-plugin-react-intl": "3.5.1",
"eslint": "8.57.1",
"eslint-config-scratch": "9.0.9",
"eslint-plugin-import": "2.31.0",
"eslint-plugin-react": "7.37.2",
"format-message-cli": "6.2.4",
"format-message-parse": "6.2.4",
"glob": "7.2.3",
"husky": "8.0.3",
"jshint": "2.13.6",
"json": "^9.0.6",
"jsonlint": "1.6.3",
"lodash.defaultsdeep": "4.6.1",
"mkdirp": "0.5.1",
"node-fetch": "2.7.0",
"p-limit": "2.3.0",
"p-queue": "3.2.0",
"rimraf": "2.7.1",
"scratch-semantic-release-config": "1.0.16",
"semantic-release": "19.0.5",
"webpack": "4.47.0",
"webpack-cli": "3.3.12"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
}
}