-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
39 lines (39 loc) · 1.03 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
{
"name": "httpuppy-workspace",
"version": "0.0.0",
"description": "monorepo for local workspace for httpuppy",
"main": "index.js",
"repository": "https://github.com/abschill/httpuppy.git",
"author": "abschill",
"license": "AGPL-3.0",
"private": true,
"prettier": "@webpuppy/prettier",
"packageManager": "yarn@3.3.0",
"devDependencies": {
"@types/eslint": "^8",
"@types/mocha": "^9.1.1",
"@types/prettier": "^2",
"@types/rimraf": "^3",
"@webpuppy/eslint-config": "^0.2.3",
"@webpuppy/prettier": "^0.1.4",
"eslint": "^8.29.0",
"expect": "^28.1.0",
"husky": "^8.0.1",
"mocha": "^10.0.0",
"nyc": "^15.1.0",
"prettier": "^2.8.0",
"rimraf": "^3.0.2",
"ts-mocha": "^10.0.0",
"typescript": "^4.6.3"
},
"scripts": {
"fmt": "prettier --write .",
"lint": "yarn workspaces foreach run lint",
"build": "yarn workspaces foreach run build",
"run:basic:cjs": "node examples/simple-static/with-require.cjs",
"run:basic:mod": "node examples/simple-static/with-import.mjs"
},
"workspaces": [
"./packages/*"
]
}