-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.8 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
55
56
57
58
59
60
{
"name": "@wymp/config-simple",
"version": "1.0.0",
"description": "A simple, dotenv-based configuration system that works in node and browser",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"clean": "rm -Rf ./dist || true; rm -Rf ./docs || true",
"docs:gen": "typedoc src/index.ts --sort visibility --sort static-first --sort alphabetical",
"docs:view": "pnpx http-server -o -c 300 ./docs",
"format": "pnpm prettier:fix && pnpm lint:fix",
"lint": "eslint --cache --cache-location ./node_modules/.cache/eslintcache src tests",
"lint:fix": "pnpm lint --fix",
"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",
"prepublishOnly": "pnpm build && pnpm docs:gen"
},
"repository": {
"type": "git",
"url": "git+https://github.com/wymp/config-simple.git"
},
"keywords": [
"config"
],
"author": "Kael Shipman<kael.shipman@gmail.com>",
"license": "ISC",
"bugs": {
"url": "https://github.com/wymp/config-simple/issues"
},
"homepage": "https://github.com/wymp/config-simple#readme",
"devDependencies": {
"@types/jest": "^29.5.7",
"@types/node": "^20.8.10",
"@typescript-eslint/eslint-plugin": "^6.9.1",
"@typescript-eslint/parser": "^6.9.1",
"eslint": "^8.52.0",
"eslint-config-prettier": "^9.0.0",
"jest": "^29.7.0",
"prettier": "^3.1.1",
"ts-jest": "^29.1.1",
"typedoc": "^0.25.4",
"typescript": "^5.2.2"
},
"prettier": {
"printWidth": 120,
"trailingComma": "es5"
},
"jest": {
"roots": [
"<rootDir>/tests"
],
"transform": {
"^.+\\.tsx?$": "ts-jest"
}
}
}