-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
47 lines (47 loc) · 1.37 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
{
"name": "@nick-mazuk/lib",
"version": "0.8.254",
"description": "",
"scripts": {
"eslint": "eslint '**/*.{js,ts,tsx}' --quiet --fix",
"check-types": "tsc --noemit",
"lint": "npm run eslint && npm run check-types",
"test": "jest",
"test:watch": "npm run test -- --watch",
"build": "tsc && tsc -p esm.tsconfig.json",
"prepublishOnly": "npm run lint && npm run test && npm run build",
"postversion": "git push && git push --tags"
},
"jest": {
"collectCoverage": true,
"testPathIgnorePatterns": [
"/node_modules/",
"/js/",
"/esm/"
],
"transformIgnorePatterns": [],
"globalSetup": "./test-setup.ts"
},
"type": "module",
"keywords": [],
"author": "",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.21.3",
"@babel/preset-env": "^7.20.2",
"@babel/preset-typescript": "^7.21.0",
"@nick-mazuk/eslint-config": "^0.8.16",
"@types/jest": "^29.5.0",
"@types/node": "^18.15.10",
"@types/react": "^18.0.30",
"@types/validator": "^13.7.14",
"eslint": "^7.32.0",
"jest": "^29.5.0",
"prettier": "^2.8.7",
"typescript": "^5.0.2"
},
"dependencies": {
"crypto-es": "^1.2.7",
"validator": "^13.9.0"
}
}