-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
60 lines (60 loc) · 1.36 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
{
"name": "prex",
"version": "0.4.9",
"description": "Async coordination primitives and extensions on top of ES6 Promises",
"license": "Apache-2.0",
"keywords": [
"async",
"promise",
"promises",
"future",
"deferred",
"promise-a",
"promise-a-plus",
"then",
"await",
"coordination",
"semaphore",
"cancellation",
"cancellationtoken"
],
"main": "out/lib/index.js",
"typings": "out/lib/index.d.ts",
"scripts": {
"build": "gulp build",
"test": "gulp test"
},
"dependencies": {
"@esfx/cancelable": "^1.0.0 || >=1.0.0-pre.13",
"@esfx/disposable": "^1.0.0 || >=1.0.0-pre.13"
},
"devDependencies": {
"@types/chai": "^3.5.2",
"@types/gulp": "^4.0.6",
"@types/mocha": "^2.2.41",
"@types/node": "^7.0.22",
"chai": "^3.5.0",
"del": "^1.2.0",
"gulp": "^4.0.2",
"gulp-istanbul": "^1.1.3",
"gulp-mocha": "^7.0.2",
"gulp-sourcemaps": "^1.6.0",
"gulp-util": "^3.0.4",
"merge2": "^0.3.6",
"mocha": "^7.1.1",
"source-map-support": "^0.2.10",
"typescript": "^3.2.2"
},
"author": {
"name": "Ron Buckton",
"email": "[email protected]",
"url": "http://github.com/rbuckton"
},
"bugs": {
"url": "http://github.com/rbuckton/prex/issues"
},
"repository": {
"type": "git",
"url": "git://github.com/rbuckton/prex.git"
}
}