forked from scratchblocks/scratchblocks
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 2.33 KB
/
package.json
File metadata and controls
81 lines (81 loc) · 2.33 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"name": "scratchblocks",
"version": "3.6.4",
"description": "Make pictures of Scratch blocks from text.",
"license": "MIT",
"author": "Tim Radvan",
"homepage": "https://scratchblocks.github.io/",
"repository": {
"type": "git",
"url": "git+https://github.com/scratchblocks/scratchblocks.git"
},
"bugs": {
"url": "https://github.com/scratchblocks/scratchblocks/issues"
},
"type": "module",
"main": "build/scratchblocks.min.js",
"module": "build/scratchblocks.min.es.js",
"directories": {
"test": "tests"
},
"scripts": {
"build": "rollup -c --environment buildTarget:PROD",
"fmt": "prettier --cache --write *.js syntax/*.js scratch2/*.js scratch3/*.js locales-src/*.js snapshots/*.js snapshots/*.html tests/*.js",
"lint:staged": "lint-staged",
"lint": "eslint *.js syntax/*.js scratch2/*.js scratch3/*.js locales-src/*.js snapshots/*.js tests/*.js",
"locales": "node locales-src/build-locales.js",
"rollup": "rollup -c",
"snapshots": "node ./snapshots/index.js",
"start": "rollup -c -m -w",
"test": "cross-env NODE_OPTIONS=--experimental-vm-modules jest"
},
"devDependencies": {
"@babel/cli": "^7.25.9",
"@babel/core": "^7.26.0",
"@babel/eslint-parser": "^7.25.9",
"@babel/plugin-external-helpers": "^7.25.9",
"@babel/plugin-syntax-import-assertions": "^7.26.0",
"@babel/plugin-transform-object-assign": "^7.25.9",
"@babel/preset-env": "^7.26.0",
"@eslint/js": "^9.15.0",
"@rollup/plugin-babel": "^6.0.4",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-terser": "^0.4.4",
"cross-env": "^7.0.3",
"csso": "^5.0.5",
"eslint": "^9.15.0",
"express": "^5.0.1",
"globals": "^15.12.0",
"jest": "^29.7.0",
"lint-staged": "^15.2.10",
"prettier": "^3.3.3",
"prettier-package-json": "^2.8.0",
"puppeteer": "^23.8.0",
"rollup": "^4.27.2",
"rollup-plugin-license": "^3.5.3",
"rollup-plugin-serve": "^3.0.0",
"scratch-l10n": "^4.0.31"
},
"keywords": [
"scratch"
],
"lint-staged": {
"package.json": [
"prettier-package-json --write",
"git add"
],
"*.js": [
"prettier --write",
"git add"
]
},
"pre-commit": "lint:staged",
"prettier": {
"semi": false,
"trailingComma": "all",
"arrowParens": "avoid"
},
"jest": {
"transform": {}
}
}