-
Notifications
You must be signed in to change notification settings - Fork 661
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.12 KB
/
Copy pathpackage.json
File metadata and controls
47 lines (47 loc) · 1.12 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
{
"name": "@blockly/migrate",
"version": "3.0.8",
"description": "A collection of tools that help with migrating apps using Blockly to new versions of BLockly.",
"bin": "./bin/migrate.js",
"author": "Blockly Team",
"scripts": {
"test": "mocha --ui tdd"
},
"keywords": [
"blockly",
"dev",
"migration",
"migrate",
"version"
],
"homepage": "https://github.com/RaspberryPiFoundation/blockly-samples/tree/master/plugins/migration#readme",
"bugs": {
"url": "https://github.com/RaspberryPiFoundation/blockly-samples/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/RaspberryPiFoundation/blockly-samples.git",
"directory": "plugins/migration"
},
"license": "Apache-2.0",
"dependencies": {
"chalk": "^5.0.1",
"commander": "^9.0.0",
"json5": "^2.2.0",
"node-fetch": "^3.2.2",
"semver": "^7.3.5"
},
"publishConfig": {
"access": "public"
},
"engines": {
"node": ">=8.17.0"
},
"type": "module",
"devDependencies": {
"@types/mocha": "^10.0.7",
"chai": "^4.3.6",
"mocha": "^11.7.1",
"sinon": "^13.0.1"
}
}