-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.69 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.69 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
{
"name": "@hemjs/notions",
"version": "1.2.7",
"description": "Utilities for arrays, objects, strings, and more",
"author": "Augustus Kamau",
"license": "MIT",
"keywords": [
"hemjs",
"notions",
"utilities"
],
"scripts": {
"prebuild": "rimraf dist",
"build:copy-misc": "node ./scripts/copy-misc.js",
"build": "tsc -p tsconfig.build.json && npm run build:copy-misc",
"format": "prettier --write \"src/**/*.ts\" \"tests/**/*.ts\"",
"lint": "eslint \"{src,tests}/**/*.ts\" --fix",
"test": "jest",
"test:cov": "jest --coverage",
"prerelease": "npm run prebuild && npm run build",
"release": "release-it",
"prepare": "husky"
},
"devDependencies": {
"@commitlint/cli": "20.5.3",
"@commitlint/config-conventional": "20.5.3",
"@eslint/js": "^9.13.0",
"@types/jest": "30.0.0",
"@types/node": "24.12.2",
"@typescript-eslint/eslint-plugin": "8.59.1",
"@typescript-eslint/parser": "8.59.1",
"eslint": "9.39.4",
"eslint-config-prettier": "10.1.8",
"eslint-plugin-import": "2.32.0",
"eslint-plugin-prettier": "^5.2.1",
"husky": "9.1.7",
"jest": "30.3.0",
"lint-staged": "16.4.0",
"prettier": "3.8.3",
"release-it": "20.0.1",
"rimraf": "6.1.3",
"ts-jest": "29.4.9",
"typescript": "6.0.3",
"typescript-eslint": "^8.11.0"
},
"homepage": "https://github.com/hemjs/notions#readme",
"bugs": {
"url": "https://github.com/hemjs/notions/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hemjs/notions.git"
},
"publishConfig": {
"access": "public"
},
"lint-staged": {
"*.ts": [
"prettier --write",
"eslint --fix"
]
}
}