-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.57 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
{
"name": "@dr.pogodin/js-utils",
"version": "0.0.12",
"description": "Collection of JavaScript (TypeScript) utilities.",
"main": "build/index",
"react-native": "src/index",
"source": "src/index",
"types": "build/index.d.ts",
"scripts": {
"build": "rimraf build && tsc",
"jest": "npm run jest:types && npm run jest:logic",
"jest:logic": "jest --config jest.config.js",
"jest:types": "tstyche",
"lint": "eslint . --ext .js,.ts",
"test": "npm run lint && npm run typecheck && npm run jest",
"typecheck": "tsc --noEmit && tsc --project __tests__/tsconfig.json"
},
"repository": {
"type": "git",
"url": "git+https://github.com/birdofpreyru/js-utils.git"
},
"keywords": [
"javascript",
"util",
"utility"
],
"author": "Dr. Sergey Pogodin <doc@pogodin.studio> (https://dr.pogodin.studio)",
"license": "MIT",
"bugs": {
"url": "https://github.com/birdofpreyru/js-utils/issues"
},
"homepage": "https://github.com/birdofpreyru/js-utils#readme",
"devDependencies": {
"@babel/core": "^7.24.6",
"@babel/preset-env": "^7.24.6",
"@babel/preset-typescript": "^7.24.6",
"@tsconfig/recommended": "^1.0.6",
"@types/jest": "^29.5.12",
"babel-jest": "^29.7.0",
"eslint": "^8.57.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^18.0.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-import": "^2.29.1",
"jest": "^29.7.0",
"rimraf": "^5.0.7",
"tstyche": "^1.1.0",
"typescript": "^5.4.5",
"typescript-eslint": "^7.10.0"
}
}