-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.6 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
{
"name": "@8hobbies/utils",
"version": "4.2.0",
"description": "Generally useful TypeScript and JavaScript utilities.",
"main": "dist/index.js",
"type": "module",
"types": "dist/index.d.ts",
"files": [
"/dist",
"!/dist/**.test.d.ts",
"!/dist/**.test.js"
],
"scripts": {
"clean": "rimraf dist/",
"compile": "tsc --project tsconfig.json && tsc --project tsconfig.test.json",
"coverage": "vitest run --coverage --run",
"doc": "typedoc",
"format": "eslint --fix *.ts *.mjs && prettier . .gitlab-ci.yml --write",
"lint": "eslint *.ts *.mjs && prettier . .gitlab-ci.yml --check",
"prepack": "npm run clean && npm run compile",
"test": "npm run compile && npm run coverage",
"test-all": "npm run compile && npm run lint && npm run test && npm run doc"
},
"repository": {
"type": "git",
"url": "git+https://gitlab.com/8hobbies/utils.git"
},
"keywords": [
"utils"
],
"author": "8 Hobbies, LLC",
"license": "Apache-2.0",
"bugs": {
"url": "https://gitlab.com/8hobbies/utils/issues"
},
"homepage": "https://utils.8hob.io",
"devDependencies": {
"@8hobbies/eslint-conf-baseline": "^6.0.0",
"@8hobbies/typedoc-plugin-404": "^3.1.0",
"@8hobbies/typedoc-plugin-plausible": "^2.1.0",
"@types/jest": "^29.5.14",
"@types/node": "^22.10.5",
"@vitest/coverage-v8": "^2.1.8",
"globals": "^15.14.0",
"prettier": "^3.4.2",
"rimraf": "^6.0.1",
"ts-expect": "^1.3.0",
"ts-node": "^10.9.2",
"typedoc": "^0.27.6",
"typedoc-plugin-mdn-links": "^4.0.7",
"typescript": "~5.7.2",
"vitest": "^2.1.6"
}
}