-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 769 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 769 Bytes
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
{
"private": true,
"workspaces": [
"code/*"
],
"scripts": {
"new-package": "node ./scripts/new-package.js",
"bootstrap": "lerna bootstrap",
"clean": "lerna run clean",
"build": "lerna run build",
"test": "jest",
"lint": "# linter not configured yet",
"postinstall": "yarn run bootstrap",
"pretest": "yarn run build"
},
"devDependencies": {
"@types/jest": "^24.0.15",
"@types/node": "^12.0.10",
"del-cli": "^2.0.0",
"inquirer": "^6.4.1",
"jest": "^24.8.0",
"lerna": "^3.15.0",
"prettier": "^1.18.2",
"ts-jest": "^24.0.2",
"typescript": "^3.5.2"
},
"license": "MIT",
"repository": "git@github.com:dbrockman/monode.git",
"homepage": "https://github.com/dbrockman/monode#readme"
}