-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.11 KB
/
Copy pathpackage.json
File metadata and controls
45 lines (45 loc) · 1.11 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
{
"name": "polallel",
"version": "1.1.0",
"description": "JS library to perform operations in parallel",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"lib/**/*"
],
"scripts": {
"build": "tsc",
"test": "test",
"prettier": "prettier --config .prettierrc '**/*.ts' --write",
"prebuild": "rimraf ./lib",
"lint": "eslint . --ext .ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/davidpolaniaac/polallel.git"
},
"keywords": [
"parallel"
],
"author": "davidpolaniaac",
"license": "MIT",
"bugs": {
"url": "https://github.com/davidpolaniaac/polallel/issues"
},
"homepage": "https://github.com/davidpolaniaac/polallel#readme",
"devDependencies": {
"@types/node": "^18.7.18",
"@typescript-eslint/eslint-plugin": "^5.38.0",
"@typescript-eslint/parser": "^5.38.0",
"eslint": "^8.24.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"prettier": "^2.7.1",
"rimraf": "^3.0.2",
"ts-node": "^10.9.1",
"typescript": "^4.8.3"
},
"dependencies": {
"rxjs": "^7.5.6"
}
}