-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.31 KB
/
Copy pathpackage.json
File metadata and controls
47 lines (47 loc) · 1.31 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
46
47
{
"name": "handilities",
"version": "0.0.7",
"description": "Handy utilities for JS, TS, React in browser and server env",
"main": "lib",
"scripts": {
"build": "rimraf ./lib && npm run lint && npm run test && tsc",
"test": "jest",
"test:watch": "jest --watch --coverage=false",
"prettier:check": "prettier --check \"./src/**/*.{js,ts}\"",
"prettier:write": "prettier --write \"./src/**/*.{js,ts}\"",
"eslint": "eslint --ext .js,.ts .",
"lint": "npm run prettier:check && npm run eslint",
"precommit": "npm run lint && jest --coverage=false && tsc --noEmit",
"prepare": "husky install"
},
"author": "Pavel Kovalenkov",
"keywords": [
"utilities",
"handy functions",
"typescript",
"helpers"
],
"license": "ISC",
"devDependencies": {
"@types/jest": "^29.2.4",
"@typescript-eslint/eslint-plugin": "^5.46.1",
"@typescript-eslint/parser": "^5.46.1",
"coveralls": "^3.1.1",
"eslint": "^8.29.0",
"eslint-config-prettier": "^8.5.0",
"husky": "^8.0.0",
"jest": "^29.3.1",
"prettier": "^2.8.1",
"rimraf": "^3.0.2",
"ts-jest": "^29.0.3",
"ts-node": "^10.9.1",
"typescript": "^4.9.4"
},
"files": [
"lib/**/*"
],
"repository": {
"type": "git",
"url": "https://github.com/kovalenkovpu/handilities.git"
}
}