forked from gasolin/scratch3-internet
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
42 lines (42 loc) · 1.44 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
{
"name": "scratch3-internet",
"version": "0.8.0",
"description": "Some extensions to extend scratch 3's internet capability",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"setup:gui": "cd scratch-gui && npm install && npm link scratch-vm && cd ..",
"setup:vm": "cd scratch-vm && npm install && npm link && cd ..",
"setup": "git submodule update --init --recursive && npm install && npm run setup:vm && npm run setup:gui",
"start": "cd scratch-gui && npm start",
"build:replace": "replace-in-files --string='--progress' --replacement='--display-error-details --mode production' 'scratch-gui/package.json'",
"build:gui": "cd scratch-gui && npm run build && cd ..",
"build": "npm run build:replace && npm run build:gui",
"upgrade": "git submodule update --init",
"deploy": "npx gh-pages -d scratch-gui/build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/gasolin/scratch3-internet.git"
},
"keywords": [
"scratch3",
"extension"
],
"author": "Fred Lin",
"license": "MIT",
"bugs": {
"url": "https://github.com/gasolin/scratch3-internet/issues"
},
"homepage": "https://github.com/gasolin/scratch3-internet#readme",
"dependencies": {
"lodash": "^4.17.15"
},
"devDependencies": {
"mkdirp": "^0.5.1",
"replace-in-files-cli": "^0.3.0",
"rimraf": "^3.0.0",
"shx": "^0.3.2",
"shelljs": "^0.8.3"
}
}