-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.35 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.35 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
{
"name": "electerm-data-tool",
"version": "2.1.10",
"description": "electerm data export/migrate tool",
"main": "src/index.js",
"bin": {
"electerm-data-tool": "./src/index.js"
},
"scripts": {
"migrate": "node src/index.js migrate",
"export": "node src/index.js export",
"info": "node src/index.js info",
"update": "node -r dotenv/config bin/update-version.js",
"lint": "standard",
"fix": "standard --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/electerm/electerm-data-tool.git"
},
"keywords": [
"electerm",
"data",
"tool",
"migrate",
"export"
],
"author": "ZHAO Xudong <zxdong@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/electerm/electerm-data-tool/issues"
},
"files": [
"src",
"LICENSE",
"README.md"
],
"homepage": "https://github.com/electerm/electerm-data-tool#readme",
"dependencies": {
"@yetzt/nedb": "^1.8.0",
"commander": "^14.0.0",
"lodash": "^4.17.21",
"nanoid": "^3.3.8"
},
"standard": {
"ignore": [
"*.html",
"/res/",
"/temp",
"/data",
"/public"
],
"parserOptions": {
"requireConfigFile": false,
"sourceType": "module"
}
},
"devDependencies": {
"axios": "^1.11.0",
"dotenv": "^17.2.2",
"standard": "^17.1.2"
}
}