-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.74 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
61
62
{
"name": "configure.ts",
"version": "0.0.4",
"description": "A simple module that helps with creating a single typed configuration",
"main": "./dist/cjs/index.js",
"module": "dist/mjs/index.js",
"type": "module",
"private": false,
"files": [
"dist"
],
"exports": {
".": {
"import": "./dist/mjs/index.js",
"require": "./dist/cjs/index.js"
}
},
"scripts": {
"prepare": "husky install",
"build": "tsc -p tsconfig-cjs.json && tsc -p tsconfig-mjs.json && ./gen.sh",
"format": "prettier --write . && eslint --fix . --ext ts",
"test": "jest --passWithNoTests",
"test:coverage": "npm test -- --coverage",
"test:badges": "npm run test:coverage && jest-coverage-badges",
"lint-staged": "lint-staged"
},
"repository": {
"type": "git",
"url": "git+https://github.com/niklaskors/configured.git"
},
"author": "Niklas Kors",
"license": "UNLICENSED",
"bugs": {
"url": "https://github.com/niklaskors/configured/issues"
},
"homepage": "https://github.com/niklaskors/configured#readme",
"dependencies": {
"dotenv": "^16.3.1",
"jest": "^29.7.0"
},
"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",
"eslint-plugin-import": "^2.29.0",
"eslint-plugin-prettier": "^5.0.1",
"eslint-plugin-require-sort": "^1.3.0",
"eslint-plugin-security": "^1.7.1",
"eslint-plugin-simple-import-sort": "^10.0.0",
"eslint-plugin-typescript-sort-keys": "^3.1.0",
"eslint-plugin-unused-imports": "^3.0.0",
"husky": "^8.0.3",
"jest-coverage-badges": "^1.1.2",
"lint-staged": "^15.0.2",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"typescript": "^5.2.2"
}
}