-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 853 Bytes
/
Copy pathpackage.json
File metadata and controls
31 lines (31 loc) · 853 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
{
"private": true,
"license": "UNLICENSED",
"scripts": {
"build": "rm -rf dist && tsc",
"test": "mocha",
"check": "npm run format-check && npm run lint-check",
"format-check": "prettier --check ./",
"format-fix": "prettier --write ./",
"lint-check": "eslint --fix-dry-run src/**/*.ts",
"lint-fix": "eslint --fix src/**/*.ts",
"prepublish": "npm run check && npm run test && npm run build"
},
"devDependencies": {
"@tsconfig/node21": "^21.0.0",
"@types/mocha": "^10.0.6",
"@types/node": "^20.10.4",
"eslint": "^8.55.0",
"eslint-config-standard-with-typescript": "^42.0.0",
"eslint-plugin-import": "^2.29.0",
"eslint-plugin-n": "^16.4.0",
"eslint-plugin-promise": "^6.1.1",
"mocha": "^10.2.0",
"prettier": "^3.1.1",
"ts-node": "^10.9.2",
"typescript": "^5.3.3"
},
"dependencies": {
"fp-ts": "^2.16.1"
}
}