-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
44 lines (44 loc) · 1.19 KB
/
package.json
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
{
"name": "parent",
"version": "1.0.0",
"description": "Electron workspace",
"main": "index.js",
"repository": "https://github.com/electron-lang/electron",
"author": "David Craven <[email protected]>",
"license": "ISC",
"private": true,
"workspaces": [
"electron",
"electron/src/tests/pass",
"celllib",
"language-server",
"schematic-diagram",
"theia-electron",
"browser-app",
"desktop-app",
"website",
"examples/electron",
"examples/tinyFPGA",
"examples/blinky",
"examples/picorv32",
"examples/picosoc",
"examples/dac",
"examples/dacImpl"
],
"resolutions": {
"sprotty": "0.4.0"
},
"scripts": {
"prepare": "lerna run prepare && yarn run docs",
"docs": "node magic-readme.js",
"test": "lerna run test",
"cov": "lerna run cov",
"publish:latest": "lerna publish --registry=https://registry.npmjs.org/ --skip-git --force-publish",
"publish:next": "lerna publish --registry=https://registry.npmjs.org/ --exact --canary=next --npm-tag=next --force-publish --skip-git --yes"
},
"devDependencies": {
"lerna": "^2.11.0",
"markdown-magic": "^0.1.25",
"markdown-magic-subpackage-list": "^1.1.1"
}
}