forked from foambubble/foam
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.11 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.11 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
{
"name": "loam",
"version": "0.25.11",
"description": "Loam",
"repository": "git@github.com:CiceroIsBack/loam.git",
"license": "MIT",
"private": "true",
"publisher": "ciceroisback",
"workspaces": [
"packages/*"
],
"scripts": {
"version-extension": "lerna version",
"package-extension": "yarn workspace loam package-extension",
"install-extension": "yarn workspace loam install-extension",
"publish-extension": "yarn workspace loam publish-extension",
"reset": "yarn && yarn clean && yarn build",
"clean": "lerna run clean",
"build": "lerna run build",
"test": "yarn workspace loam test --stream",
"lint": "lerna run lint",
"watch": "lerna run watch --concurrency 20 --stream"
},
"devDependencies": {
"all-contributors-cli": "^6.16.1",
"lerna": "^6.4.1"
},
"engines": {
"node": ">=18",
"vscode": "^1.70.0"
},
"husky": {
"hooks": {
"pre-commit": "yarn lint"
}
},
"prettier": {
"arrowParens": "avoid",
"printWidth": 80,
"semi": true,
"singleQuote": true,
"trailingComma": "es5"
},
"dependencies": {}
}