-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
54 lines (54 loc) · 1.49 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
{
"name": "@understand-ai/async-transformer",
"version": "1.1.1",
"description": "concurrent processing of iterators",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"src",
"dist"
],
"scripts": {
"test": "jest",
"test:watch": "jest --watch",
"test:cov": "jest --coverage --ci --reporters=default --reporters=jest-junit",
"build": "tsc -p tsconfig-build.json",
"lint": "eslint --ext .ts src/ && eslint --ext .ts tests/"
},
"keywords": [],
"author": "Understand AI",
"license": "MIT",
"devDependencies": {
"@tsconfig/node18": "^1.0.1",
"@types/jest": "^29.4.0",
"@types/node": "^18.14.2",
"@types/node-fetch": "^2.6.3",
"@typescript-eslint/eslint-plugin": "^5.59.0",
"eslint-config-prettier": "^8.0.0",
"eslint-plugin-jest": "^27.2.1",
"eslint-plugin-json": "^3.1.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-promise": "^6.0.0",
"jest": "^29.4.3",
"jest-junit": "^15.0.0",
"jest-summarizing-reporter": "^1.1.4",
"node-fetch": "^2",
"ts-jest": "^29.0.5",
"ts-node": "^10.9.1",
"typescript": "^4.9.5"
},
"directories": {
"test": "tests"
},
"repository": {
"type": "git",
"url": "git+https://github.com/understand-ai/async-transformers.git"
},
"bugs": {
"url": "https://github.com/understand-ai/async-transformers/issues"
},
"homepage": "https://github.com/understand-ai/async-transformers#readme",
"publishConfig": {
"access": "public"
}
}