-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
68 lines (68 loc) · 1.61 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
{
"name": "@vhoyer/lazy-let",
"version": "1.0.1",
"description": "An utility for using lazy variables in a BDD test environment with nested `describe`s, and `it`s.",
"author": "Vinícius Hoyer",
"module": "dist/index.js",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"type": "module",
"license": "MIT",
"homepage": "https://github.com/vhoyer/lazy-let#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/vhoyer/lazy-let.git"
},
"bugs": {
"url": "https://github.com/vhoyer/lazy-let/issues"
},
"keywords": [
"bdd",
"lazy",
"let",
"tests",
"lazy-let"
],
"scripts": {
"prerelease": "npm run build",
"release": "np",
"build": "tsc",
"clean": "tsc --build --clean",
"test": "jest"
},
"files": [
"src/*",
"dist/*"
],
"np": {
"branch": "main",
"releaseDraft": true,
"yarn": false,
"message": ":bookmark: v%s"
},
"publishConfig": {
"access": "public"
},
"devDependencies": {
"@babel/core": "^7.18.10",
"@babel/preset-env": "^7.18.10",
"@babel/preset-typescript": "^7.18.6",
"@quero/eslint-config-base": "^2.1.0",
"@quero/eslint-config-typescript": "^1.2.2",
"@types/jest": "^28.1.7",
"@typescript-eslint/eslint-plugin": "^5.33.1",
"@typescript-eslint/parser": "^5.33.1",
"babel-jest": "^28.1.3",
"eslint": "^8.22.0",
"eslint-plugin-jest": "^26.8.3",
"jest": "^28.1.3",
"np": "^7.6.2",
"ts-node": "^10.9.1",
"typescript": "^4.7.4"
},
"overrides": {
"@quero/eslint-config-typescript": {
"eslint-plugin-jest": "^26.8.3"
}
}
}