-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.3 KB
/
Copy pathpackage.json
File metadata and controls
49 lines (49 loc) · 1.3 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
{
"name": "await-to-decorater",
"version": "1.0.1",
"description": "Async/await decorater for easy error handling in js, inspired by await-to-js",
"main": "./dist/await-to-decorater.umd.js",
"module": "./dist/await-to-decorater.es.js",
"scripts": {
"test": "jest",
"clean": "rimraf dist",
"build": "npm run clean && rollup -c",
"debug": "babel-node ./test/api.js"
},
"homepage": "https://github.com/duziten/await-to-decorater#readme",
"files": [
"dist"
],
"keywords": [
"async await",
"await function",
"decorater",
"catch error",
"es8",
"javascript"
],
"author": "duziten",
"repository": {
"type": "git",
"url": "https://github.com/duziten/await-to-decorater"
},
"license": "MIT",
"dependencies": {
"await-to-js": "^2.1.1"
},
"devDependencies": {
"@babel/core": "^7.6.2",
"@babel/node": "^7.6.2",
"@babel/plugin-proposal-class-properties": "^7.5.5",
"@babel/plugin-proposal-decorators": "^7.6.0",
"@babel/plugin-transform-runtime": "^7.6.2",
"@babel/preset-env": "^7.6.2",
"@babel/runtime": "^7.6.2",
"jest": "^24.9.0",
"rimraf": "^3.0.0",
"rollup": "^1.21.4",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-sourcemaps": "^0.4.2"
}
}