This repository was archived by the owner on Apr 20, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.78 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.78 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": "glitchyscratch-blocks",
"version": "1.0.0-rc.2",
"description": "Glitchy Scratch Blocks is a library for building creative computing interfaces based off scratch-blocks and Blockly.",
"author": "Glitchy Scratch Contributors",
"license": "Apache-2.0",
"homepage": "https://github.com/Glitchy-Scratch/blocks#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/Glitchy-Scratch/blocks.git"
},
"main": "./dist/vertical.js",
"browser": "./shim/vertical.js",
"scripts": {
"build": "python2 build.py && webpack",
"test:unit": "node tests/jsunit/test_runner.js",
"test:lint": "eslint . --cache",
"test:messages": "npm run translate && node i18n/test_scratch_msgs.js",
"test": "npm run test:lint && npm run test:messages && npm run test:unit",
"version": "json -f package.json -I -e \"this.repository.sha = '$(git log -n1 --pretty=format:%H)'\"",
"translate": "node i18n/js_to_json.js && node i18n/json_to_js.js",
"translate:sync:src": "tx-push-src scratch-editor blocks msg/json/en.json",
"translate:sync:translations": "node i18n/sync_tx_translations.js",
"translate:update": "npm run translate:sync:src && npm run translate:sync:translations"
},
"dependencies": {
"exports-loader": "0.6.3",
"imports-loader": "0.6.5"
},
"devDependencies": {
"async": "3.2.2",
"chromedriver": "^95.0.0",
"copy-webpack-plugin": "4.5.1",
"eslint": "^8.5",
"event-stream": "4.0.1",
"glitchyscratch-i18n": "^4.0.0",
"glob": "7.2.0",
"google-closure-compiler": "20180402.0.0",
"google-closure-library": "20190301.0.0",
"graceful-fs": "4.2.8",
"json": "10.0.0",
"selenium-webdriver": "^4.0.0-rc-2",
"transifex": "1.6.6",
"webpack": "^5.65.0",
"webpack-cli": "^4.9.1"
}
}