-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.08 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
{
"name": "concurrent-wrapper",
"version": "1.0.4",
"description": "Easily add logic to limit concurrent execution of any function returning a Promise.",
"main": "index.js",
"typing": "index.d.ts",
"scripts": {
"build": "tsc -p .",
"test": "jest",
"release": "np"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kritollm/concurrent-wrapper.git"
},
"files": [
"index.js",
"index.d.ts"
],
"keywords": [
"concurrent",
"wrapper",
"async",
"Promise",
"easy"
],
"jest": {
"transform": {
".(ts|tsx)": "<rootDir>/node_modules/ts-jest/preprocessor.js"
},
"testRegex": "(/__tests__/.*|\\.(test|spec))\\.(ts|tsx|js)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js"
]
},
"author": "Kristian Mørch",
"license": "MIT",
"bugs": {
"url": "https://github.com/kritollm/concurrent-wrapper/issues"
},
"homepage": "https://github.com/kritollm/concurrent-wrapper#readme",
"devDependencies": {
"@types/jest": "^19.2.2",
"np": "^2.13.1",
"ts-jest": "^19.0.6"
}
}