forked from scratchfoundation/scratch-editor
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.46 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.46 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
{
"name": "scratch-editor",
"version": "12.7.0",
"private": "true",
"description": "Scratch editor mono-repository",
"keywords": [],
"homepage": "https://github.com/scratchfoundation/scratch-editor#readme",
"bugs": {
"url": "https://github.com/scratchfoundation/scratch-editor/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/scratchfoundation/scratch-editor.git"
},
"license": "AGPL-3.0-only",
"author": "Scratch Foundation",
"workspaces": [
"packages/task-herder",
"packages/scratch-svg-renderer",
"packages/scratch-render",
"packages/scratch-vm",
"packages/scratch-gui"
],
"scripts": {
"build": "cross-env NODE_ENV=production npm run --workspaces build",
"build-monorepo": "cross-env-shell ./scripts/build-monorepo.sh",
"clean": "npm run --workspaces clean",
"prepare": "husky install",
"refresh-gh-workflow": "ts-node scripts/build-gha-workflows.ts",
"test": "npm test --workspaces",
"update-legal": "npm --workspaces exec -c 'rm -f ./{LICENSE,TRADEMARK} && cp -f ../../{LICENSE,TRADEMARK} .'",
"version": "cross-env-shell ./scripts/npm-version.sh"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"devDependencies": {
"@commitlint/cli": "17.8.1",
"@commitlint/config-conventional": "17.8.1",
"cross-env": "7.0.3",
"globals": "16.5.0",
"husky": "8.0.3",
"npm": "10.9.4",
"ts-node": "10.9.2"
}
}