mirror of
https://github.com/google/blockly.git
synced 2025-12-16 06:10:12 +01:00
111 lines
4.0 KiB
JSON
111 lines
4.0 KiB
JSON
{
|
|
"name": "blockly",
|
|
"version": "10.4.0",
|
|
"description": "Blockly is a library for building visual programming editors.",
|
|
"keywords": [
|
|
"blockly"
|
|
],
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/google/blockly.git"
|
|
},
|
|
"bugs": {
|
|
"url": "https://github.com/google/blockly/issues"
|
|
},
|
|
"homepage": "https://developers.google.com/blockly/",
|
|
"author": {
|
|
"name": "Neil Fraser"
|
|
},
|
|
"scripts": {
|
|
"build": "gulp build",
|
|
"build-debug": "gulp build --verbose --debug",
|
|
"build-debug-log": "npm run build:debug > build-debug.log 2>&1 && tail -3 build-debug.log",
|
|
"build-strict": "gulp build --verbose --strict",
|
|
"build-strict-log": "npm run build:strict > build-debug.log 2>&1 && tail -3 build-debug.log",
|
|
"build:compiled": "exit 1 # Deprecated; use \"npm run minify\" instead.",
|
|
"build:compressed": "exit 1 # Deprecated; use \"npm run minify\" instead.",
|
|
"build:js": "exit 1 # Deprecated; use \"npm run tsc\" instead.",
|
|
"build:langfiles": "exit 1 # Deprecated; use \"npm run langfiles\" instead.",
|
|
"clean": "gulp clean",
|
|
"deployDemos": "npm ci && gulp deployDemos",
|
|
"deployDemos:beta": "npm ci && gulp deployDemosBeta",
|
|
"docs": "gulp docs",
|
|
"format": "prettier --write .",
|
|
"format:check": "prettier --check .",
|
|
"generate:langfiles": "exit 1 # Deprecated; use \"npm run messages\" instead.",
|
|
"messages": "gulp messages",
|
|
"lint": "eslint .",
|
|
"lint:fix": "eslint . --fix",
|
|
"langfiles": "gulp langfiles",
|
|
"minify": "gulp minify",
|
|
"package": "gulp package",
|
|
"postinstall": "patch-package",
|
|
"prepareDemos": "gulp prepareDemos",
|
|
"publish": "npm ci && gulp publish",
|
|
"publish:beta": "npm ci && gulp publishBeta",
|
|
"recompile": "gulp recompile",
|
|
"release": "gulp gitCreateRC",
|
|
"start": "npm run build && concurrently -n tsc,server \"tsc --watch --preserveWatchOutput --outDir \"build/src\" --declarationDir \"build/declarations\"\" \"http-server ./ -s -o /tests/playground.html -c-1\"",
|
|
"tsc": "gulp tsc",
|
|
"test": "gulp test",
|
|
"test:browser": "cd tests/browser && npx mocha",
|
|
"test:generators": "gulp testGenerators",
|
|
"test:mocha:interactive": "npm run build && concurrently -n tsc,server \"tsc --watch --preserveWatchOutput --outDir \"build/src\" --declarationDir \"build/declarations\"\" \"http-server ./ -o /tests/mocha/index.html -c-1\"",
|
|
"test:compile:advanced": "gulp buildAdvancedCompilationTest --debug",
|
|
"updateGithubPages": "npm ci && gulp gitUpdateGithubPages"
|
|
},
|
|
"main": "./index.js",
|
|
"umd": "./blockly.min.js",
|
|
"unpkg": "./blockly.min.js",
|
|
"types": "./index.d.ts",
|
|
"browser": {
|
|
"./node.js": "./browser.js",
|
|
"./core.js": "./core-browser.js",
|
|
"./blockly-node.js": "./blockly.js"
|
|
},
|
|
"license": "Apache-2.0",
|
|
"devDependencies": {
|
|
"@blockly/block-test": "^5.0.0",
|
|
"@blockly/dev-tools": "^7.0.2",
|
|
"@blockly/theme-modern": "^5.0.0",
|
|
"@hyperjump/json-schema": "^1.5.0",
|
|
"@microsoft/api-documenter": "^7.22.4",
|
|
"@microsoft/api-extractor": "^7.29.5",
|
|
"@typescript-eslint/eslint-plugin": "^6.1.0",
|
|
"async-done": "^2.0.0",
|
|
"chai": "^4.2.0",
|
|
"concurrently": "^8.0.1",
|
|
"eslint": "^8.4.1",
|
|
"eslint-config-google": "^0.14.0",
|
|
"eslint-config-prettier": "^9.0.0",
|
|
"eslint-plugin-jsdoc": "^48.0.2",
|
|
"glob": "^10.3.4",
|
|
"google-closure-compiler": "^20230802.0.0",
|
|
"gulp": "^4.0.2",
|
|
"gulp-concat": "^2.6.1",
|
|
"gulp-gzip": "^1.4.2",
|
|
"gulp-header": "^2.0.9",
|
|
"gulp-insert": "^0.5.0",
|
|
"gulp-rename": "^2.0.0",
|
|
"gulp-replace": "^1.0.0",
|
|
"gulp-series": "^1.0.2",
|
|
"gulp-shell": "^0.8.0",
|
|
"gulp-sourcemaps": "^3.0.0",
|
|
"gulp-umd": "^2.0.0",
|
|
"http-server": "^14.0.0",
|
|
"json5": "^2.2.0",
|
|
"markdown-tables-to-json": "^0.1.7",
|
|
"mocha": "^10.0.0",
|
|
"patch-package": "^8.0.0",
|
|
"prettier": "3.2.5",
|
|
"readline-sync": "^1.4.10",
|
|
"rimraf": "^5.0.0",
|
|
"typescript": "^5.0.2",
|
|
"webdriverio": "^8.16.7",
|
|
"yargs": "^17.2.1"
|
|
},
|
|
"dependencies": {
|
|
"jsdom": "22.1.0"
|
|
}
|
|
}
|