-
Notifications
You must be signed in to change notification settings - Fork 78
/
package.json
108 lines (108 loc) · 2.91 KB
/
package.json
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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
{
"name": "app-inspector",
"version": "2.2.0",
"description": "app inspector",
"keywords": [
"inspector",
"macaca"
],
"bin": {
"inspector": "./bin/app-inspector.js",
"app-inspector": "./bin/app-inspector.js"
},
"repository": {
"type": "git",
"url": "git://github.com/macacajs/app-inspector.git"
},
"files": [
"lib/**/*.js",
"public/**/*.js",
"public/**/*.css",
"views/index.html",
"index.js"
],
"dependencies": {
"co": "^4.6.0",
"co-request": "^1.0.0",
"commander": "^2.9.0",
"detect-port": "1",
"koa": "^1.2.1",
"koa-bodyparser": "^2.2.0",
"koa-router": "^5.4.0",
"koa-static": "^2.0.0",
"npm-update": "^1.0.2",
"nunjucks": "^2.4.2",
"react-syntax-highlighter": "^7.0.2",
"request": "^2.74.0",
"xlogger": "^1.0.4",
"xml2map2": "^1.0.2",
"xutil": "1"
},
"devDependencies": {
"babel-core": "^6.13.2",
"babel-loader": "^7.1.5",
"babel-preset-es2015": "^6.13.2",
"babel-preset-react": "^6.11.1",
"command-line-test": "^1.0.5",
"concurrently": "^7.1.0",
"cross-env": "^7.0.3",
"css-loader": "^6.7.1",
"es6-promise": "^3.2.1",
"eslint": "8",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-egg": "^11.0.1",
"eslint-config-prettier": "^6.9.0",
"eslint-plugin-babel": "^5.3.1",
"eslint-plugin-mocha": "^4.11.0",
"eslint-plugin-react": "^7.2.1",
"git-contributor": "1",
"husky": "^1.3.1",
"json-loader": "^0.5.4",
"koa-webpack-dev-middleware": "^1.2.2",
"less": "^3.11.3",
"less-loader": "^6.2.0",
"macaca-ecosystem": "*",
"mini-css-extract-plugin": "^2.6.0",
"mocha": "6",
"nyc": "^11.8.0",
"react": "^15.2.1",
"react-copy-to-clipboard": "^5.0.0",
"react-dom": "^15.2.1",
"react-ga": "^2.7.0",
"react-github-button": "0.1.11",
"style-loader": "^3.3.1",
"terser": "^3.14.1",
"vuepress": "^0.14.8",
"webpack": "^5.69.1",
"webpack-cli": "^4.9.0",
"webpack-dev-server": "^4.8.1",
"whatwg-fetch": "^1.0.0"
},
"scripts": {
"dev": "concurrently \"npm run watch\" \"npm run start\"",
"test": "nyc --reporter=text mocha",
"lint": "eslint --fix .",
"start": "APP_INSPECTOR=dev ./bin/app-inspector.js -u emulator-5554 --verbose",
"build": "cross-env NODE_ENV=production webpack",
"watch": "cross-env NODE_ENV=development webpack serve",
"prepublish": "npm run build",
"contributor": "git-contributor",
"docs:dev": "vuepress dev docs",
"docs:build": "vuepress build docs",
"prepublishOnly": "npm run build"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint"
}
},
"homepage": "https://github.com/macacajs/app-inspector",
"bugs": "https://github.com/macacajs/app-inspector/issues/new",
"license": "MIT",
"optionalDependencies": {
"ios-simulator": "*",
"macaca-adb": "*",
"uiautomatorwd": "*",
"xctestwd": "*"
}
}