-
Notifications
You must be signed in to change notification settings - Fork 661
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 2.3 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 2.3 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
{
"name": "blockly-samples",
"version": "0.0.0",
"description": "Samples for using Blockly",
"author": "Blockly Team",
"license": "Apache-2.0",
"scripts": {
"build": "lerna run build --scope '@blockly/*'",
"clean": "lerna run clean --scope '@blockly/*'",
"deploy:prepare": "npm run deploy:prepare:plugins && npm run deploy:prepare:examples && gulp predeploy",
"deploy:prepare:examples": "npm install --workspace=examples && npm run prepare-examples && npm run predeploy --if-present --workspace=examples",
"deploy:prepare:plugins": "npm run clean && npm run build && lerna run predeploy --scope '@blockly/*'",
"deploy": "npm run deploy:prepare && gulp deploy",
"deploy:upstream": "npm run deploy:prepare && gulp deployUpstream",
"format": "prettier --write .",
"format:check": "prettier --check .",
"license": "gulp checkLicenses",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"publish:prepare": "gulp prepareForPublish",
"publish:manual": "gulp publishManual",
"publish:force": "gulp forcePublish",
"publish:unpublishedOnly": "gulp publishFromPackage",
"publish:checkVersions": "gulp checkVersions",
"test:ghpages:beta": "gulp testGhPagesBeta",
"test:ghpages": "gulp testGhPages",
"test": "lerna run test --scope '@blockly/*'",
"prepare-examples": "node ./scripts/copy-blockly.js"
},
"devDependencies": {
"@babel/eslint-parser": "^7.22.15",
"@eslint/eslintrc": "^2.1.2",
"@eslint/js": "^8.49.0",
"@typescript-eslint/eslint-plugin": "^6.7.2",
"@typescript-eslint/parser": "^6.7.2",
"blockly": "^12.0.0",
"conventional-changelog-conventionalcommits": "^5.0.0",
"eslint": "^8.49.0",
"eslint-config-google": "^0.14.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-jsdoc": "^46.8.2",
"gh-pages": "^6.1.1",
"globals": "^13.22.0",
"gulp": "^5.0.0",
"gulp-header": "^2.0.9",
"http-server": "^14.1.1",
"js-green-licenses": "^4.0.0",
"lerna": "^9.0.3",
"prettier": "^3.0.3",
"rimraf": "^3.0.2",
"showdown": "^2.1.0",
"typescript": "^5.5.4"
},
"publishConfig": {
"access": "public"
},
"workspaces": [
"plugins/*",
"examples/blockly-**",
"examples/**-demo",
"examples/**-codelab",
"examples/sample-**",
"examples/developer-tools"
]
}