-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.08 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.08 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
{
"name": "@scratch-fuse/fuse",
"version": "1.0.0",
"description": "To compile your FUSE project into Scratch.",
"keywords": [
"scratch",
"blocks",
"fuse",
"compiler",
"project"
],
"homepage": "https://github.com/scratch-fuse/fuse#readme",
"bugs": {
"url": "https://github.com/scratch-fuse/fuse/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/scratch-fuse/fuse.git"
},
"dependencies": {
"@scratch-fuse/builtins": "github:scratch-fuse/builtins#build",
"@scratch-fuse/compiler": "github:scratch-fuse/compiler#build",
"@scratch-fuse/core": "github:scratch-fuse/core#build",
"@scratch-fuse/serializer": "github:scratch-fuse/serializer#build",
"jsonschema": "^1.5.0",
"jszip": "^3.10.1",
"node-forge": "^1.3.1",
"yaml": "^2.8.1"
},
"license": "MPL-2.0",
"author": "FurryR",
"type": "commonjs",
"main": "bin/compiler.js",
"bin": {
"fuse": "./bin/compiler.js",
"fuse-decompiler": "./bin/decompiler.js"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
}
}