This repository has been archived by the owner on Jun 30, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
71 lines (71 loc) · 1.6 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
{
"name": "topological-promise-queue",
"version": "0.2.2",
"description": "Run promises in order of a directed acyclic graph",
"source": "index.js",
"main": "./dist/tpq.js",
"exports": {
".": {
"import": "./dist/tpq.modern.js",
"require": "./dist/tpq.js"
}
},
"module": "./dist/tpq.module.js",
"unpkg": "./dist/tpq.umd.js",
"types": "./dist/index.d.ts",
"files": [
"README.md",
"LICENSE",
"dist/",
"index.js"
],
"scripts": {
"build": "microbundle",
"dev": "microbundle watch",
"type": "tsc -p .",
"test": "jest",
"release": "shipjs prepare"
},
"repository": {
"type": "git",
"url": "git+https://github.com/KnisterPeter/topological-promise-queue.git"
},
"keywords": [],
"author": "Markus Wolf <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/KnisterPeter/topological-promise-queue/issues"
},
"homepage": "https://github.com/KnisterPeter/topological-promise-queue#readme",
"devDependencies": {
"@babel/core": "7.18.6",
"@babel/preset-env": "7.18.6",
"@babel/preset-typescript": "7.18.6",
"@types/jest": "28.1.1",
"babel-jest": "28.1.1",
"jest": "28.1.1",
"microbundle": "0.15.0",
"prettier": "2.7.1",
"shipjs": "0.24.4",
"typescript": "4.7.3"
},
"prettier": {},
"babel": {
"presets": [
[
"@babel/preset-env",
{
"targets": {
"node": "current"
}
}
],
"@babel/preset-typescript"
]
},
"jest": {
"transform": {
"^.+\\.[t|j]sx?$": "babel-jest"
}
}
}