-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
98 lines (98 loc) · 2.72 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
{
"name": "not-me",
"version": "5.3.0",
"description": "Easy and type-safe validation",
"main": "lib/index.js",
"types": "lib/types.d.ts",
"files": [
"lib"
],
"engines": {
"node": ">=14"
},
"scripts": {
"build": "npm run clean && tsc --project tsconfig.release.json && node scripts/bundle-declaration-references.js",
"build:watch": "tsc --project tsconfig.watch.json --watch",
"clean": "rimraf lib",
"typecheck": "tsc --noEmit",
"test": "jest",
"test:watch": "jest --watch",
"test:cov": "jest --coverage",
"test:cov:changed": "npm run test:cov -- --onlyChanged",
"test:debug": "node --inspect-brk node_modules/.bin/jest --runInBand --testTimeout=86400000",
"test:debug:watch": "npm run test:debug -- --watch",
"format": "prettier --write .",
"lint": "eslint --ext .ts,.tsx --max-warnings 0 .",
"lint:fix": "eslint --ext .ts,.tsx --max-warnings 0 --fix .",
"integrity-check": "npm run typecheck && npm run lint && npm run test",
"precommit": "lint-staged && npm run integrity-check",
"update-all-dependencies": "npm-check-updates --upgrade && rimraf package-lock.json node_modules && npm install",
"reset-repository": "git clean -Xdf",
"prepare": "husky install",
"pre-merge-commit": "npm install && npm run integrity-check"
},
"author": "Bartolomeu Rodrigues",
"license": "MIT",
"publishConfig": {
"access": "public"
},
"dependencies": {},
"devDependencies": {
"@types/jest": "^27.4.1",
"@typescript-eslint/eslint-plugin": "^5.15.0",
"@typescript-eslint/parser": "^5.15.0",
"eslint": "^8.11.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-node": "^11.1.0",
"glob": "^7.2.0",
"husky": "^7.0.4",
"jest": "^27.5.1",
"lint-staged": "^12.3.7",
"npm-check-updates": "^12.5.4",
"prettier": "^2.6.0",
"rimraf": "^3.0.2",
"ts-jest": "^27.1.3",
"typescript": "^4.6.2"
},
"jest": {
"moduleFileExtensions": [
"js",
"json",
"ts",
"tsx"
],
"rootDir": ".",
"testMatch": [
"**/*.spec.ts",
"**/*.spec.tsx"
],
"transform": {
"\\.tsx?$": "ts-jest"
},
"globals": {
"ts-jest": {
"isolatedModules": true,
"tsconfig": "tsconfig.json"
}
},
"testEnvironment": "node",
"roots": [
"<rootDir>/src/"
],
"moduleDirectories": [
"node_modules",
"<rootDir>"
]
},
"lint-staged": {
"*.{js,jsx,json,ts,tsx,scss,sass,css,md,yml,yaml}": "prettier --write"
},
"repository": {
"type": "git",
"url": "https://github.com/Bartmr/not-me.git"
},
"bugs": {
"url": "https://github.com/Bartmr/not-me/issues"
},
"homepage": "https://github.com/Bartmr/not-me"
}