-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.38 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.38 KB
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
{
"name": "@aminzer/describe-function-test",
"version": "1.0.0",
"description": "Simple helper for defining Jest tests for functions",
"keywords": [
"tests",
"jest"
],
"repository": {
"type": "git",
"url": "https://github.com/aminzer/describe-function-test.git"
},
"license": "MIT",
"author": "aminzer",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "tsc --project tsconfig.build.json",
"clean": "rimraf dist",
"lint": "eslint src/**/*.ts test/**/*.ts",
"lint:fix": "npm run lint -- --fix",
"prepare": "npm run rebuild",
"rebuild": "run-s clean build",
"test": "jest"
},
"dependencies": {
"app-root-path": "^3.1.0"
},
"devDependencies": {
"@types/jest": "^29.5.1",
"@types/node": "^18.16.0",
"@typescript-eslint/eslint-plugin": "^5.59.1",
"@typescript-eslint/parser": "^5.59.1",
"eslint": "^8.39.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jest": "^27.2.1",
"eslint-plugin-prettier": "^5.1.3",
"jest": "^29.5.0",
"npm-run-all": "^4.1.5",
"prettier": "^3.2.5",
"rimraf": "^5.0.0",
"ts-jest": "^29.1.0",
"typescript": "5.0.4"
},
"engines": {
"node": ">=12.0.0"
}
}