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
75 lines (75 loc) · 2.04 KB
/
package.json
File metadata and controls
75 lines (75 loc) · 2.04 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
{
"name": "scratchblocks",
"version": "3.6.0",
"description": "Render scratchblocks code to SVG images.",
"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 --write *.js syntax/*.js scratch2/*.js scratch3/*.js locales-src/*.js snapshots/*.js snapshots/*.html",
"lint:staged": "lint-staged",
"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.17.6",
"@babel/core": "^7.17.9",
"@babel/plugin-external-helpers": "^7.16.7",
"@babel/plugin-transform-object-assign": "^7.16.7",
"@babel/preset-env": "^7.16.11",
"@rollup/plugin-babel": "^5.3.1",
"@rollup/plugin-json": "^4.1.0",
"cross-env": "^7.0.3",
"csso": "^5.0.3",
"express": "^4.18.0",
"jest": "^28.0.2",
"lint-staged": "^12.4.1",
"prettier": "^2.6.2",
"prettier-package-json": "^2.6.3",
"puppeteer": "^13.7.0",
"rollup": "^2.70.2",
"rollup-plugin-license": "^2.7.0",
"rollup-plugin-serve": "^1.1.0",
"rollup-plugin-terser": "^7.0.2",
"scratch-l10n": "^3.14.20220428031608"
},
"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": "es5",
"arrowParens": "avoid"
},
"jest": {
"transform": {}
}
}