-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 819 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 819 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
31
32
33
34
{
"name": "deth",
"private": true,
"license": "MIT",
"engines": {
"node": ">=11.15.0",
"yarn": ">=1.15.2"
},
"scripts": {
"lint": "wsrun -c lint",
"lint:fix": "wsrun -c lint:fix",
"typecheck": "wsrun -c typecheck",
"build": "wsrun -te -c build",
"test": "wsrun -c test",
"test:fix": "yarn lint:fix && yarn test && yarn typecheck"
},
"workspaces": [
"packages/*"
],
"devDependencies": {
"@types/chai": "^4.2.15",
"@types/mocha": "^8.2.2",
"@typescript-eslint/eslint-plugin": "^4.19.0",
"@typescript-eslint/parser": "^4.19.0",
"chai": "^4.3.4",
"eslint": "^7.22.0",
"eslint-plugin-no-only-tests": "^2.4.0",
"mocha": "^8.3.2",
"prettier": "^2.2.1",
"ts-node": "^9.1.1",
"typescript": "^4.2.3",
"wsrun": "^5.2.0"
}
}