-
Notifications
You must be signed in to change notification settings - Fork 16
/
package.json
executable file
·94 lines (94 loc) · 2.71 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
{
"name": "@whinc/web-console",
"version": "0.7.2",
"author": "[email protected]",
"license": "MIT",
"keywords": [
"console",
"vConsole",
"web-console",
"webConsole",
"log"
],
"repository": "https://github.com/whinc/web-console",
"main": "dist/web-console.umd.min.js",
"scripts": {
"serve": "vue-cli-service serve",
"build:lib": "vue-cli-service build --target lib --name web-console --dest dist src/main.js",
"depoly:lib": "npm run lint && npm run build:lib && cross-env NPM_TOKEN=$NPM_TOKEN semantic-release && npm run changelog",
"build:demo": "vue-cli-service build --target app --dest demo",
"depoly:demo": "npm run build:demo && npx gh-pages -d demo",
"lint": "vue-cli-service lint src/**/*.js",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s -r 0",
"report": "vue-cli-service build --report",
"test:unit": "vue-cli-service test:unit",
"test:api": "cd ./tests/api && nodemon index.js",
"e2e": "vue-cli-service e2e"
},
"dependencies": {
"cookie_js": "^1.2.2",
"highlight.js": "^9.14.2",
"lodash.clonedeep": "^4.5.0",
"mint-ui": "^2.2.13",
"specificity": "^0.4.1",
"url-search-params": "^1.1.0",
"vue": "^2.5.22",
"vue-infinite-scroll": "^2.0.2"
},
"devDependencies": {
"@commitlint/cli": "^7.5.0",
"@commitlint/config-conventional": "^7.5.0",
"@vue/cli-plugin-babel": "^3.4.1",
"@vue/cli-plugin-e2e-cypress": "^3.4.1",
"@vue/cli-plugin-eslint": "^3.4.1",
"@vue/cli-plugin-unit-jest": "^3.5.1",
"@vue/cli-service": "^3.4.1",
"@vue/test-utils": "^1.0.0-beta.28",
"babel-core": "^7.0.0-0",
"babel-jest": "^22.4.4",
"babel-plugin-component": "^1.1.1",
"conventional-changelog-angular": "^5.0.3",
"conventional-changelog-cli": "^2.0.12",
"cross-env": "^5.2.0",
"cz-conventional-changelog": "^2.1.0",
"gh-pages": "^1.2.0",
"gulp": "^4.0.0",
"husky": "^1.3.1",
"i": "^0.3.6",
"node-sass": "^4.11.0",
"nodemon": "^1.18.9",
"prettier": "1.14.2",
"pretty-quick": "^1.10.0",
"sass-loader": "^6.0.6",
"semantic-release": "^15.13.3",
"semantic-release-cli": "^4.1.1",
"vue-template-compiler": "^2.5.22"
},
"browserslist": [
"> 1%",
"last 2 versions",
"not ie <= 8"
],
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"prettier": {
"printWidth": 120
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"release": {
"ci": false,
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/npm"
]
}
}