-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.13 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.13 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
{
"name": "@expo/mux",
"version": "1.0.7",
"description": "Creates a promise that waits for the promises in nested data structures and resolves to data structures of the same form. It recursively traverses the input data structure and multiplexes its promises.",
"main": "build/mux.js",
"files": [
"build/"
],
"scripts": {
"build": "./build.sh",
"prepare": "yarn build",
"test": "jest",
"tsc": "tsc"
},
"repository": {
"type": "git",
"url": "https://github.com/ide/mux.git"
},
"keywords": [
"promise",
"async",
"await",
"multiplex",
"mux",
"nested",
"deep",
"recursive"
],
"author": "James Ide",
"license": "MIT",
"bugs": {
"url": "https://github.com/ide/mux/issues"
},
"homepage": "https://github.com/ide/mux",
"jest": {
"preset": "ts-jest",
"rootDir": "src"
},
"dependencies": {
"lodash": "^4.17.20"
},
"devDependencies": {
"@tsconfig/node12": "^1.0.7",
"@types/jest": "^26.0.14",
"@types/lodash": "^4.14.161",
"@types/node": "^14.11.2",
"jest": "^26.4.2",
"ts-jest": "^26.4.1",
"typescript": "^4.0.3"
}
}