forked from ninecat-ui/ninecat-ui
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
116 lines (116 loc) · 3.23 KB
/
Copy pathpackage.json
File metadata and controls
116 lines (116 loc) · 3.23 KB
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
109
110
111
112
113
114
115
116
{
"name": "ninecat-ui",
"version": "1.0.20",
"description": "A Vue.js 2.0 Web UI Toolkit.",
"author": "ninecat-ui",
"private": false,
"main": "package/ninecat-ui.js",
"scripts": {
"dev": "webpack-dev-server --progress --history-api-fallback --config build/webpack.config.dev.js",
"start": "npm run dev",
"prod": "webpack --config build/webpack.config.prod.js",
"lint": "eslint --ext .js --ext .vue src --ext .vue packages --ext .vue",
"lint:fix": "eslint --ext .js,.vue src doc test packages --fix",
"lint:staged": "lint-staged",
"test:unit": "jest --config test/jest.config.js",
"test": "npm run lint && npm run test:unit",
"test:debug": "node --inspect node_modules/.bin/jest --runInBand --config test/jest.config.js",
"docs:build": "webpack --config build/webpack.config.doc.js"
},
"keywords": [
"ninecat",
"ninecat ui",
"ninecat-ui",
"ninecat Ui",
"Ninecat Ui",
"Ninecat",
"Vue.js 2.0 Web UI",
"Vue UI",
"Vue",
"Webpack 4"
],
"license": "MIT",
"dependencies": {
"deepmerge": "^4.2.2",
"vue": "2.6.10"
},
"devDependencies": {
"@babel/core": "7.5.5",
"@babel/preset-env": "7.5.5",
"@vue/test-utils": "1.0.0-beta.29",
"babel-core": "7.0.0-bridge.0",
"babel-eslint": "10.0.2",
"babel-helper-vue-jsx-merge-props": "^2.0.3",
"babel-jest": "24.9.0",
"babel-loader": "8.0.6",
"babel-plugin-jsx-v-model": "^2.0.3",
"babel-plugin-syntax-jsx": "^6.18.0",
"babel-plugin-transform-vue-jsx": "^3.7.0",
"babel-preset-env": "^1.7.0",
"copy-webpack-plugin": "5.0.4",
"css-loader": "2.1.1",
"docsearch.js": "^2.6.3",
"eslint": "5.16.0",
"eslint-config-standard": "12.0.0",
"eslint-loader": "2.2.1",
"eslint-plugin-import": "2.18.2",
"eslint-plugin-node": "8.0.1",
"eslint-plugin-promise": "4.2.1",
"eslint-plugin-standard": "4.0.0",
"eslint-plugin-vue": "5.2.3",
"file-loader": "4.2.0",
"friendly-errors-webpack-plugin": "1.7.0",
"highlight.js": "^9.18.1",
"html-webpack-plugin": "3.2.0",
"husky": "2.7.0",
"identity-obj-proxy": "^3.0.0",
"jest": "24.9.0",
"jest-serializer-vue": "2.0.2",
"lint-staged": "8.2.1",
"markdown-it-anchor": "^5.2.5",
"markdown-it-chain": "^1.3.0",
"markdown-it-container": "^2.0.0",
"mini-css-extract-plugin": "0.5.0",
"node-sass": "4.12.0",
"sass-loader": "7.2.0",
"style-loader": "0.23.1",
"stylus": "0.54.5",
"stylus-loader": "3.0.2",
"transliteration": "^2.1.8",
"uglify-es": "3.3.9",
"url-loader": "1.1.2",
"vue-jest": "3.0.4",
"vue-loader": "15.7.0",
"vue-markdown": "^2.2.4",
"vue-router": "3.0.6",
"vue-style-loader": "4.1.2",
"vue-template-compiler": "2.6.10",
"webpack": "4.39.2",
"webpack-cli": "3.3.6",
"webpack-dev-server": "3.8.0",
"webpack-merge": "4.2.1"
},
"lint-staged": {
"linters": {
"*.js": [
"eslint --ignore-path .gitignore --fix"
]
},
"ignore": []
},
"husky": {
"hooks": {
"pre-commit": "npm run lint"
}
},
"files": [
"package"
],
"repository": {
"type": "git",
"url": "https://github.com/ninecat-ui/ninecat-ui"
},
"publishConfig": {
"access": "public"
}
}