-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
66 lines (66 loc) · 2.02 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
{
"name": "muxiui",
"version": "0.1.0",
"description": "Muxistudio's UI lib",
"main": "./index.js",
"scripts": {
"precommit": "npm test",
"build": "webpack --config webpack.build.conf.js",
"dev": "node_modules/.bin/webpack-dev-server --config webpack.dev.config.js",
"test": "npm run format && npm run lint && npm run build && karma start test/unit/karma.conf.js --single-run",
"karma": "karma start test/unit/karma.conf.js --single-run",
"lint": "node_modules/.bin/eslint src --quiet",
"format": "pretty-quick --staged"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Muxi-Studio/MUI_FE.git"
},
"author": "Muxi FE",
"license": "MIT",
"bugs": {
"url": "https://github.com/Muxi-Studio/MUI_FE/issues"
},
"homepage": "https://github.com/Muxi-Studio/MUI_FE#readme",
"dependencies": {
"chai": "^4.1.2",
"karma": "^2.0.0",
"karma-chrome-launcher": "^2.2.0",
"karma-coverage": "^1.1.1",
"karma-mocha": "^1.3.0",
"karma-sinon-chai": "^1.3.3",
"karma-sourcemap-loader": "^0.3.7",
"karma-spec-reporter": "^0.0.32",
"karma-webpack": "^3.0.0",
"mocha": "^5.0.4",
"sinon": "^4.4.6",
"sinon-chai": "^3.0.0",
"vue": "^2.5.16",
"vue-html-loader": "^1.2.4"
},
"devDependencies": {
"babel-core": "^6.14.0",
"babel-loader": "^6.2.5",
"babel-plugin-transform-runtime": "^6.12.0",
"babel-preset-es2015": "^6.14.0",
"babel-runtime": "^6.11.6",
"css-loader": "^0.24.0",
"eslint": "^3.16.1",
"eslint-config-airbnb-base": "^11.1.0",
"eslint-config-prettier": "^2.9.0",
"eslint-plugin-html": "^2.0.1",
"eslint-plugin-import": "^2.2.0",
"husky": "^0.14.3",
"node-sass": "^3.8.0",
"pretty-quick": "^1.6.0",
"sass-loader": "^4.0.0",
"style-loader": "^0.13.1",
"vue-hot-reload-api": "^1.3.3",
"vue-loader": "^13.0.5",
"vue-router": "^3.0.1",
"vue-style-loader": "^3.0.1",
"vue-template-compiler": "^2.4.2",
"webpack": "^2.2.1",
"webpack-dev-server": "^2.4.1"
}
}