-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
77 lines (77 loc) · 1.86 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
{
"name": "@ldflex/async-iteration-handlers",
"version": "0.0.0-development",
"description": "LDflex handlers for asynchronous iteration operations",
"license": "MIT",
"author": "Jesse Wright <[email protected]> (https://github.com/jeswr/)",
"contributors": [
"Ruben Verborgh <[email protected]> (https://ruben.verborgh.org/)",
"Ruben Taelman <[email protected]> (https://www.rubensworks.net/)"
],
"repository": {
"type": "git",
"url": "https://github.com/LDflex/async-iteration-handlers.git"
},
"bugs": {
"url": "https://github.com/LDflex/async-iteration-handlers/issues"
},
"main": "lib/index.js",
"types": "lib/index.d.js",
"sideEffects": false,
"directories": {
"src": "src"
},
"files": [
"lib"
],
"devDependencies": {
"@types/async": "^3.2.10",
"@types/jest": "^27.0.3",
"@typescript-eslint/eslint-plugin": "^5.5.0",
"@typescript-eslint/parser": "^5.5.0",
"eslint": "^8.4.0",
"eslint-plugin-jest": "^27.0.1",
"jest": "^27.4.3",
"ldflex": "^2.12.1",
"pre-commit": "^1.2.2",
"semantic-release": "^18.0.1",
"ts-jest": "^27.0.7",
"typescript": "4.9",
"typescript-eslint": "^8.0.0"
},
"scripts": {
"build": "tsc",
"jest": "jest",
"lint": "eslint src test --ext .ts",
"lint:fix": "eslint src test --ext .ts --fix",
"prepublishOnly": "npm run build",
"test": "npm run jest -- --collectCoverage",
"test:dev": "npm run jest -- --watch"
},
"dependencies": {
"async": "^3.2.2"
},
"release": {
"branches": [
"master",
"+([0-9])?(.{+([0-9]),x}).x",
"next",
{
"name": "alpha",
"prerelease": true
},
{
"name": "beta",
"prerelease": true
}
]
},
"publishConfig": {
"access": "public"
},
"pre-commit": [
"lint",
"build",
"test"
]
}