-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
86 lines (86 loc) · 2.09 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
{
"name": "sakura_ui",
"version": "0.0.9",
"main": "dist/sakura_ui.umd.min.js",
"description": "A VUE UI Library",
"scripts": {
"start": "vue-cli-service serve",
"build": "vue-cli-service build",
"build:lib": "vue-cli-service build --target lib --name sakura_ui src/index.js",
"lint": "vue-cli-service lint",
"test": "karma start --single-run",
"test:unit": "karma start",
"test:unit:old": "vue-cli-service test:unit",
"docs:dev": "vuepress dev docs",
"docs:build": "vuepress build docs"
},
"dependencies": {
"vue": "^2.5.21"
},
"devDependencies": {
"@vue/cli-plugin-babel": "^3.0.5",
"@vue/cli-plugin-eslint": "^3.0.5",
"@vue/cli-plugin-unit-mocha": "^3.0.5",
"@vue/cli-service": "^3.0.5",
"@vue/eslint-config-prettier": "^4.0.1",
"@vue/test-utils": "^1.0.0-beta.20",
"babel-eslint": "^10.0.1",
"chai": "^4.1.2",
"eslint": "^5.8.0",
"eslint-plugin-vue": "^5.0.0",
"highlight.js": "^9.15.8",
"karma": "^4.1.0",
"karma-chrome-launcher": "^2.2.0",
"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",
"node-sass": "^4.9.0",
"sass-loader": "^7.0.1",
"sinon": "^7.3.2",
"sinon-chai": "^3.3.0",
"vue-template-compiler": "^2.5.21",
"vuepress": "^0.14.8"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Honohonoho/SAKURA.git"
},
"keywords": [
"vue",
"ui"
],
"author": "Qi Li",
"license": "MIT",
"bugs": {
"url": "https://github.com/Honohonoho/SAKURA/issues"
},
"homepage": "https://github.com/Honohonoho/SAKURA#readme",
"eslintConfig": {
"root": true,
"env": {
"node": true
},
"extends": [
"plugin:vue/essential"
],
"rules": {
"no-console": "off",
"eslint-disable": true
},
"parserOptions": {
"parser": "babel-eslint"
}
},
"postcss": {
"plugins": {
"autoprefixer": {}
}
},
"browserslist": [
"> 1%",
"last 2 versions",
"not ie <= 8"
]
}