-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.73 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.73 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
{
"name": "layer-migrate",
"description": "A command line tool for exporting your chat data from Layer and importing it to Stream",
"version": "1.1.2",
"author": "Thierry Schellenbach @tschellenbach",
"bin": {
"layer-migrate": "./bin/run"
},
"bugs": "https://github.com/GetStream/layer-migration/issues",
"dependencies": {
"@babel/runtime": "^7.5.5",
"@oclif/command": "^1",
"@oclif/config": "^1",
"@oclif/plugin-autocomplete": "^0.1.3",
"@oclif/plugin-commands": "^1.2.3",
"@oclif/plugin-help": "^2.2.1",
"axios": "^0.19.0",
"layer-api": "^2.3.3"
},
"devDependencies": {
"@oclif/dev-cli": "^1",
"@oclif/test": "^1",
"babel-eslint": "^10.0.2",
"chai": "^4",
"eslint": "^6.2",
"eslint-plugin-babel": "^5.3.0",
"globby": "^10",
"mocha": "^6",
"nyc": "^14",
"prettier": "^1.18.2"
},
"engines": {
"node": ">=8.0.0"
},
"files": [
"/bin",
"/npm-shrinkwrap.json",
"/oclif.manifest.json",
"/src"
],
"homepage": "https://github.com/GetStream/layer-migration",
"keywords": [
"oclif"
],
"license": "MIT",
"main": "src/index.js",
"oclif": {
"commands": "./src/commands",
"bin": "layer-migrate",
"plugins": [
"@oclif/plugin-help"
]
},
"repository": "GetStream/layer-migration",
"scripts": {
"postpack": "rm -f oclif.manifest.json",
"posttest": "eslint .",
"prepack": "oclif-dev manifest && oclif-dev readme",
"lint": "yarn prettier --write --check --config ./.prettierrc \"**/*.js\" && eslint --fix ./src"
}
}