-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
98 lines (98 loc) · 3.08 KB
/
package.json
File metadata and controls
98 lines (98 loc) · 3.08 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
{
"name": "kickstart-ui",
"version": "2.1.1",
"description": "Vue components and js libs",
"module": "dist/kickstart-ui.esm.js",
"main": "index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/crompco/kickstart.git"
},
"author": "Crompco LLC",
"license": "MIT",
"scripts": {
"build": "cross-env NODE_ENV=production webpack --config build/webpack.dist.js",
"build:docs": "cross-env NODE_ENV=production webpack --config build/webpack.docs.js",
"dev": "cross-env NODE_ENV=development webpack-dev-server --config build/webpack.dev.js --hot",
"build:lib": "webpack --config build/webpack.lib.js",
"build:all": "npm run build && npm run build:lib",
"clean": "rimraf ./dist ./lib ./docs/docs.bundle.css ./docs/docs.bundle.js",
"lint": "eslint --format=node_modules/eslint-formatter-pretty --ext .js,.vue,.html ./",
"test": "npm run build:lib && ava",
"test:watch": "npm run build:lib ava --watch"
},
"devDependencies": {
"@babel/cli": "^7.0.0",
"@babel/core": "^7.0.0",
"@babel/plugin-proposal-class-properties": "^7.0.0",
"@babel/plugin-proposal-decorators": "^7.0.0",
"@babel/plugin-proposal-export-namespace-from": "^7.0.0",
"@babel/plugin-proposal-function-sent": "^7.0.0",
"@babel/plugin-proposal-json-strings": "^7.0.0",
"@babel/plugin-proposal-numeric-separator": "^7.0.0",
"@babel/plugin-proposal-throw-expressions": "^7.0.0",
"@babel/plugin-syntax-dynamic-import": "^7.0.0",
"@babel/plugin-syntax-import-meta": "^7.0.0",
"@babel/plugin-transform-runtime": "^7.0.0",
"@babel/preset-env": "^7.0.0",
"@mdit-vue/plugin-component": "^2.1.4",
"@starptech/rehype-webparser": "^0.10.0",
"autoprefixer": "^6.7.7",
"ava": "^0.19.0",
"babel-loader": "^8.0.0",
"browser-env": "^2.0.29",
"core-js": "^3.9.1",
"cross-env": "^3.2.3",
"css-loader": "^6.8.1",
"deep-assign": "^2.0.0",
"eslint": "^3.19.0",
"eslint-plugin-vue": "^2.0.1",
"fast-glob": "^3.3.3",
"file-loader": "^0.11.1",
"gray-matter": "^4.0.3",
"highlight.js": "^11.11.1",
"markdown-it": "^14.1.0",
"mini-css-extract-plugin": "^1.3.9",
"normalize.css": "^5.0.0",
"postcss-loader": "^3.0.0",
"prismjs": "^1.6.0",
"raw-loader": "^4.0.2",
"sass": "^1.77.2",
"sass-loader": "^13.3.2",
"style-loader": "^3.3.3",
"svg-inline-loader": "^0.7.1",
"tether": "^1.4.0",
"url-loader": "^0.5.8",
"vue": "^2.2.0",
"vue-loader": "^15.11.1",
"vue-router": "^3.4.9",
"vue-server-renderer": "2.6.10",
"vue-style-loader": "^2.0.3",
"vue-svg-loader": "^0.1.2",
"vue-template-compiler": "^2.2.6",
"webpack": "^5.89.0",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^4.15.1"
},
"dependencies": {
"axios": "^0.15.3",
"popper.js": "^1.9.1",
"v-mask": "^1.2.0",
"velocity-animate": "^1.5.2"
},
"peerDependencies": {
"normalize.css": "^5.0.0",
"vue": "^2.2.0"
},
"ava": {
"require": [
"./test/helpers/setup.js"
]
},
"files": [
"index.js",
"src",
"dist",
"lib"
]
}