-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
107 lines (107 loc) · 2.74 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
{
"name": "cyberpunk-vue",
"version": "0.4.1",
"description": "A Dark-Style Component Library for Vue.js.",
"license": "MIT",
"keywords": [
"vue",
"components",
"ui",
"cyberpunk"
],
"repository": {
"type": "git",
"url": "[email protected]:cyberpunk-ui/cyberpunk-vue.git"
},
"homepage": "https://cyber.punkui.com",
"style": "lib/cyberpunk-vue.css",
"bugs": {
"url": "https://github.com/cyberpunk-ui/cyberpunk-vue/issues"
},
"files": [
"lib",
"src"
],
"scripts": {
"start": "vue-cli-service serve --open",
"build": "vue-cli-service build --target lib --dest lib --name cyberpunk-vue index.js",
"lint": "vue-cli-service lint",
"docs:build": "vuepress build docs",
"docs:dev": "vuepress dev docs",
"docs:deploy": "./deploy.sh",
"test": "cross-env BABEL_ENV=test karma start --single-run",
"test:dev": "cross-env BABEL_ENV=test karma start"
},
"main": "lib/cyberpunk-vue.umd.js",
"dependencies": {
"vue": "^2.6.11"
},
"devDependencies": {
"@vue/cli-plugin-babel": "~4.2.0",
"@vue/cli-plugin-eslint": "~4.2.0",
"@vue/cli-plugin-unit-mocha": "~4.2.0",
"@vue/cli-service": "~4.2.0",
"@vue/eslint-config-prettier": "^6.0.0",
"@vue/test-utils": "^1.0.0-beta.31",
"@vuepress/plugin-active-header-links": "^1.3.0",
"@vuepress/plugin-back-to-top": "^1.3.0",
"@vuepress/plugin-google-analytics": "^1.3.0",
"@vuepress/plugin-nprogress": "^1.3.0",
"babel-plugin-istanbul": "^5.2.0",
"chai": "^4.1.2",
"core-js": "^3.6.4",
"cross-env": "^7.0.1",
"eslint": "^6.7.2",
"eslint-plugin-prettier": "^3.1.1",
"eslint-plugin-vue": "^6.1.2",
"highlight.js": "^10.1.2",
"karma": "^6.3.14",
"karma-chrome-launcher": "^3.1.0",
"karma-coverage": "^1.1.2",
"karma-mocha": "^1.3.0",
"karma-sinon-chai": "^2.0.2",
"karma-sourcemap-loader": "^0.3.7",
"karma-spec-reporter": "^0.0.32",
"karma-webpack": "^4.0.2",
"mocha": "^7.1.0",
"moment": "^2.24.0",
"prettier": "^1.19.1",
"sass": "^1.25.0",
"sass-loader": "^8.0.2",
"sinon": "^8.1.1",
"sinon-chai": "^3.4.0",
"vue-template-compiler": "^2.6.11",
"vuepress": "^1.3.0",
"vuepress-theme-default-prefers-color-scheme": "^1.0.5"
},
"eslintConfig": {
"root": true,
"env": {
"node": true
},
"extends": [
"plugin:vue/essential"
],
"parserOptions": {
"ecmaVersion": 2020
},
"rules": {
"quotes": "off"
},
"overrides": [
{
"files": [
"**/__tests__/*.{j,t}s?(x)",
"**/tests/unit/**/*.spec.{j,t}s?(x)"
],
"env": {
"mocha": true
}
}
]
},
"browserslist": [
"> 1%",
"last 2 versions"
]
}