This repository has been archived by the owner on Mar 17, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
84 lines (84 loc) · 2.23 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
{
"name": "@modulist/vue",
"description": "Vue components for the Modulist Design System",
"author": "SimplyStack",
"version": "1.0.0-alpha.39",
"main": "dist/modulist-vue.common.js",
"module": "src/entry.js",
"unpkg": "dist/modulist-vue.min.js",
"files": [
"dist/*",
"src/*"
],
"scripts": {
"build": "rollup --config build/rollup.config.js",
"docs:dev": "vuepress dev docs",
"docs:build": "vuepress build docs",
"lint": "vue-cli-service lint",
"test:unit": "vue-cli-service test:unit",
"deploy": "bash scripts/deploy.sh",
"prepublish": "bash scripts/prepublish.sh"
},
"devDependencies": {
"@modulist/css": "^1.0.0-alpha.27",
"@modulist/icons": "^1.0.0-alpha.0",
"@vue/cli-plugin-babel": "^3.5.0",
"@vue/cli-plugin-eslint": "^3.5.0",
"@vue/cli-plugin-unit-jest": "^3.5.0",
"@vue/cli-service": "^3.5.0",
"@vue/eslint-config-airbnb": "^4.0.0",
"@vue/test-utils": "1.0.0-beta.29",
"@vuepress/plugin-register-components": "^1.0.0-alpha.47",
"babel-core": "7.0.0-bridge.0",
"babel-eslint": "^10.0.1",
"babel-jest": "^23.6.0",
"eslint": "^5.8.0",
"eslint-plugin-vue": "^5.0.0",
"husky": "^1.3.1",
"lint-staged": "^8.1.4",
"rollup": "^1.7.0",
"rollup-plugin-banner": "^0.2.0",
"rollup-plugin-buble": "^0.19.6",
"rollup-plugin-commonjs": "^9.2.1",
"rollup-plugin-terser": "^4.0.4",
"rollup-plugin-vue": "^4.7.2",
"vue": "^2.6.10",
"vue-server-renderer": "^2.6.10",
"vue-template-compiler": "^2.6.10",
"vuepress": "^1.0.0-alpha.47"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"linters": {
"*.{js,vue}": [
"vue-cli-service lint",
"git add"
]
},
"ignore": [
"**/dist/*.js"
]
},
"directories": {
"doc": "docs",
"example": "examples",
"test": "tests"
},
"repository": {
"type": "git",
"url": "git+https://github.com/simplystack/modulist-vue.git"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/simplystack/modulist-vue/issues"
},
"homepage": "https://github.com/simplystack/modulist-vue#readme",
"dependencies": {
"fuzzysearch": "^1.0.3",
"popper.js": "^1.14.7"
}
}