-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.61 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": "@wymp/config-node",
"version": "1.1.0",
"description": "A small, minimal-dependency library for elegantly handling config in nodejs environments",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"clean": "rm -Rf dist &>/dev/null || true",
"docgen": "typedoc src/index.ts --sort visibility --sort static-first --sort alphabetical",
"format": "pnpm prettier:fix && pnpm lint:fix",
"lint": "eslint src tests",
"lint:fix": "pnpm lint --fix",
"prepare": "husky install",
"prepublishOnly": "pnpm test && pnpm docgen && pnpm clean && pnpm build",
"prettier": "prettier src tests --check",
"prettier:fix": "pnpm prettier --write",
"test": "pnpm typecheck && pnpm prettier && pnpm lint && pnpm test:jest",
"test:jest": "jest --verbose",
"typecheck": "tsc --noEmit"
},
"author": "Kael Shipman<kael.shipman@gmail.com>",
"license": "ISC",
"repository": "https://github.com/wymp/config-node.git",
"dependencies": {
"@wymp/weenie-base": "^1.0.0"
},
"devDependencies": {
"@types/jest": "^29.5.11",
"@types/node": "^20.10.5",
"@typescript-eslint/eslint-plugin": "^6.16.0",
"@typescript-eslint/parser": "^6.16.0",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"husky": "^8.0.3",
"jest": "^29.7.0",
"prettier": "^3.1.1",
"runtypes": "^6.7.0",
"ts-jest": "^29.1.1",
"typedoc": "^0.25.4"
},
"prettier": {
"printWidth": 100,
"trailingComma": "es5"
},
"jest": {
"roots": [
"<rootDir>/tests"
],
"transform": {
"^.+\\.tsx?$": "ts-jest"
}
}
}