forked from apple502j/parse-sb3-blocks
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.81 KB
/
Copy pathpackage.json
File metadata and controls
50 lines (50 loc) · 1.81 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
{
"name": "parse-sb3-blocks",
"version": "0.5.2",
"description": "Parse sb3 blocks, and generate scratchblocks formatted code.",
"main": "dist/parse-sb3-blocks.cjs",
"browser": "dist/parse-sb3-blocks.browser.js",
"module": "dist/parse-sb3-blocks.module.js",
"scripts": {
"test": "npm run test:lint && npm run test:snapshot",
"test:lint": "eslint . --ext .js",
"test:snapshot": "node ./test/snapshots/snapshots.js",
"docs": "node ./build-src/docs.js",
"build": "npm run locale && npm run rollup && npm run docs",
"build:nolocale": "npm run nolocale && npm run rollup",
"rollup": "rollup -c",
"locale": "npm run locale:build",
"nolocale": "node ./build-src/build-nolocale.js",
"locale:build": "node --experimental-json-modules ./build-src/build-locale.js",
"prepublishOnly": "npm run test && npm run locale && rollup -c --environment mode:prod"
},
"repository": {
"type": "git",
"url": "git+https://github.com/apple502j/parse-sb3-blocks.git"
},
"keywords": [
"scratch",
"sb3"
],
"author": "apple502j",
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/apple502j/parse-sb3-blocks/issues"
},
"homepage": "https://github.com/apple502j/parse-sb3-blocks#readme",
"devDependencies": {
"@babel/eslint-parser": "^7.19.1",
"@babel/plugin-syntax-import-assertions": "^7.20.0",
"@rollup/plugin-babel": "^6.0.2",
"@rollup/plugin-terser": "^0.1.0",
"chalk": "^5.1.2",
"eslint": "^8.27.0",
"rollup": "^3.2.5",
"scratch-l10n": "^3.15.20221108032110",
"scratch-translate-extension-languages": "^0.0.20191118205314"
},
"type": "module",
"files": [
"dist"
]
}