-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.45 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 1.45 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
{
"name": "jsreport-migration",
"version": "1.0.0",
"description": "Utility to migrate from jsreport v1 to v2",
"author": "BJR Matos <bjrmatos@gmail.com> (https://github.com/bjrmatos)",
"contributors": [
"BJR Matos <bjrmatos@gmail.com> (https://github.com/bjrmatos)",
"Jan Blaha"
],
"homepage": "https://github.com/jsreport/jsreport-migration",
"repository": {
"type": "git",
"url": "git@github.com:jsreport/jsreport-migration.git"
},
"bugs": {
"url": "https://github.com/jsreport/jsreport-migration/issues"
},
"keywords": [
"jsreport",
"migration",
"jsreport-migration"
],
"license": "MIT",
"engines": {
"node": ">=8.9"
},
"files": [
"lib",
"bin"
],
"preferGlobal": true,
"bin": {
"jsreport-migration": "./bin/jsreport-migration"
},
"scripts": {
"start": "node bin/jsreport-migration",
"test": "mocha test/test.js"
},
"standard": {
"parser": "babel-eslint",
"env": {
"node": true,
"mocha": true
}
},
"devDependencies": {
"babel-eslint": "8.2.2",
"eslint": "4.18.2",
"eslint-plugin-babel": "4.1.2",
"mocha": "5.0.3",
"should": "13.2.1",
"standard": "11.0.0"
},
"dependencies": {
"async-replace": "1.0.1",
"exit-hook": "1.1.1",
"inquirer": "5.1.0",
"lodash.omit": "4.5.0",
"npm-install-package": "2.1.0",
"ora": "1.3.0",
"p-reduce": "1.0.0",
"semver": "5.5.0",
"yargs-parser": "8.0.0"
}
}