-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
59 lines (59 loc) · 1.34 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
{
"version": "1.2.0",
"description": "weex console",
"private": false,
"keywords": [
"weex",
"console",
"log",
"debug"
],
"main": "dist/index.cjs.js",
"browserslist": "last 2 versions, > 1%, not dead",
"author": "lvjiaxuan",
"email": "",
"homepage": "https://github.com/lvjiaxuan/weex-console",
"repository": {
"type": "git",
"url": "https://github.com/lvjiaxuan/weex-console.git"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"license": "ISC",
"lint-staged": {
"*": "prettier -w -u",
"*.{vue,js}": "eslint --fix"
},
"config": {
"commitizen": {
"path": "./.cz-simple"
}
},
"files": [
"dist/index.cjs.js"
],
"name": "weex-console",
"scripts": {
"watch": "npx webpack --config webpack.config.js --progress --watch"
},
"devDependencies": {
"@babel/core": "^7.17.5",
"@babel/plugin-transform-runtime": "^7.17.0",
"@babel/preset-env": "^7.16.11",
"babel-core": "^6.26.3",
"babel-loader": "^8.2.3",
"eslint": "^8.9.0",
"eslint-plugin-vue": "^8.4.1",
"husky": "^7.0.4",
"lint-staged": "^12.3.4",
"prettier": "^2.5.1",
"webpack": "^5.69.1",
"webpack-cli": "^4.9.2",
"weex-vue-loader": "^0.7.0"
},
"dependencies": {
"@babel/runtime-corejs3": "^7.17.2",
"dolphin-native-bridge": "0.1.14"
}
}