-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 2.08 KB
/
package.json
File metadata and controls
83 lines (83 loc) · 2.08 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
72
73
74
75
76
77
78
79
80
81
82
83
{
"name": "arena-plugin-cli",
"description": "Arena Plugin Dev Command Line Interface",
"version": "0.1.2",
"author": "ArenaTeam@360.cn",
"bin": {
"arena-plugin": "./bin/run"
},
"bugs": "https://github.com/corpcode/arena-plugin/issues",
"dependencies": {
"@babel/core": "^7.4.5",
"@babel/plugin-transform-react-jsx": "^7.3.0",
"@babel/preset-env": "^7.8.4",
"@oclif/command": "^1.5.15",
"@oclif/config": "^1.13.0",
"@oclif/plugin-help": "^2.2.0",
"acorn": "^6.1.1",
"arena-file": "0.0.16",
"arena-types": "0.0.2",
"babel-loader": "^8.0.6",
"babel-plugin-transform-class-properties": "^6.24.1",
"cli-ux": "^5.2.2",
"css-loader": "^3.0.0",
"file-loader": "^4.0.0",
"memory-fs": "^0.4.1",
"mini-css-extract-plugin": "^0.7.0",
"minipass": "2.7.0",
"node-ipc": "^9.1.1",
"node-sass": "^4.12.0",
"postcss-loader": "^3.0.0",
"postcss-prefix-selector": "^1.7.2",
"request": "^2.88.0",
"request-promise-native": "^1.0.8",
"sass-loader": "^7.1.0",
"semver": "^6.3.0",
"terminal-kit": "^1.28.2",
"terser-webpack-plugin": "^1.3.0",
"url-loader": "^2.0.1",
"webpack": "^4.35.0"
},
"devDependencies": {
"@oclif/dev-cli": "^1.22.0",
"eslint": "^5.16.0",
"eslint-config-oclif": "^3.1.0",
"globby": "^8.0.2"
},
"engines": {
"node": ">=9.0.0"
},
"files": [
"/bin",
"/npm-shrinkwrap.json",
"/oclif.manifest.json",
"/src"
],
"homepage": "https://github.com/corpcode/arena-plugin",
"keywords": [
"arena"
],
"license": "MIT",
"main": "src/index.js",
"oclif": {
"commands": "./src/commands",
"bin": "arena-plugin",
"plugins": [
"@oclif/plugin-help"
]
},
"repository": "corpcode/arena-plugin",
"scripts": {
"postpack": "rm -f oclif.manifest.json",
"posttest": "eslint .",
"prepack": "oclif-dev manifest && oclif-dev readme",
"test": "echo NO TESTS",
"version": "oclif-dev readme && git add README.md"
},
"maintainers": [
{
"name": "hewenli",
"email": "hewenli@360.cn"
}
]
}