-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
56 lines (56 loc) · 1.25 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
{
"name": "promise-abortable",
"author": "dondevi",
"version": "1.2.6",
"license": "MIT",
"description": "A little lib for aborting in Promise chain.",
"keywords": [
"promise",
"abortable",
"cancellable",
"abort",
"aborting",
"aborted",
"cancel",
"canceling",
"canceled",
"async",
"await",
"signal",
"onabort",
"abortSignal",
"abortController"
],
"files": [
"src",
"dist"
],
"homepage": "https://github.com/dondevi/promise-abortable",
"repository": {
"type": "git",
"url": "git+https://github.com/dondevi/promise-abortable.git"
},
"bugs": {
"url": "https://github.com/dondevi/promise-abortable/issues"
},
"main": "dist/cjs.es6.js",
"module": "dist/esm.es6.js",
"browser": "dist/cjs.es5.js",
"scripts": {
"build": "rollup -c",
"test": "mocha",
"cover": "istanbul cover _mocha"
},
"dependencies": {},
"devDependencies": {
"@babel/core": "^7.4.5",
"@babel/polyfill": "^7.4.4",
"@babel/preset-env": "^7.4.5",
"eslint": "^6.0.0",
"rollup-plugin-babel": "^4.3.3",
"rollup-plugin-commonjs": "^10.0.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-uglify": "^6.0.2",
"rollup-plugin-uglify-es": "0.0.1"
}
}