This repository was archived by the owner on May 7, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 1.38 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 1.38 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"name": "async-migrator",
"description": "Command line tool for code transformation to async/await programming model",
"homepage": "http://github.com/SAP/async-migrator",
"main": "src/index.js",
"bin": {
"async-migrate": "./src/index.js"
},
"version": "1.0.0",
"files": [
"src"
],
"engines": {
"node": ">=4"
},
"author": {
"name": "Samir Zeort",
"email": "samir.zeort@sap.com"
},
"maintainers": [
{
"name": "Samir Zeort",
"email": "samir.zeort@sap.com"
}
],
"repository": {
"type": "git",
"url": "http://github.com/SAP/async-migrator.git"
},
"license": "Apache License, Version 2.0",
"keywords": [
"async",
"await",
"xs",
"xsjs"
],
"scripts": {
"test": "mocha './test/**/*.js'",
"coverage": "nyc npm test"
},
"dependencies": {
"escodegen": "^2.0.0",
"esprima": "^4.0.0"
},
"devDependencies": {
"chai": "^4.3.4",
"mocha": "^10.2.0",
"nyc": "^15.1.0",
"proxyquire": "^2.1.3",
"sinon": "^17.0.1"
},
"nyc": {
"exclude": [
"test/",
"samples/xs/source/index.js"
],
"all": true,
"reporter": [
"text-summary",
"html"
],
"show-process-tree": false,
"medicine-statistics": false,
"per-file": false,
"check-coverage": true,
"branches": 75,
"functions": 80,
"lines": 80,
"statements": -10
}
}