forked from inkline/inkline
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
92 lines (92 loc) · 2.64 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
87
88
89
90
91
92
{
"name": "@inkline/inkline",
"version": "1.16.8",
"description": "Inkline is a modern UI/UX framework for Vue.js, designed for creating flawless content-rich responsive web applications",
"author": "Alex Grozav <[email protected]>",
"scripts": {
"build": "npm run build:inkline && npm run build:validation && npm run dist",
"build:inkline": "vue-cli-service build --target lib --name Inkline src/index.js",
"build:validation": "vue-cli-service build --no-clean --target lib --name InklineValidation src/validation.js",
"lint": "vue-cli-service lint",
"lint:style": "vue-cli-service lint:style",
"coveralls": "cat ./coverage/lcov.info | coveralls",
"dev": "vue-cli-service serve",
"dist": "bash ./scripts/dist.sh",
"test": "vue-cli-service test:unit --coverage --no-cache",
"test:dev": "vue-cli-service test:unit --watch --coverage --no-cache",
"prepublishOnly": "npm run build"
},
"main": "dist/inkline.js",
"unpkg": "dist/inkline.js",
"files": [
"dist/",
"src/",
"types/",
"nuxt/",
"babel.config.js",
"LICENSE",
"package.json",
"README.md",
"vue.config.js"
],
"dependencies": {
"popper.js": "^1.15.0"
},
"devDependencies": {
"@ascendancyy/vue-cli-plugin-stylelint": "^1.1.2",
"@babel/core": "^7.6.0",
"@babel/types": "^7.6.1",
"@vue/cli-plugin-babel": "^3.11.0",
"@vue/cli-plugin-eslint": "^3.11.0",
"@vue/cli-plugin-unit-jest": "^3.11.0",
"@vue/cli-service": "^3.11.0",
"@vue/test-utils": "^1.0.0-beta.29",
"babel-core": "7.0.0-bridge.0",
"babel-eslint": "^10.0.3",
"babel-jest": "^23.6.0",
"coveralls": "^3.0.6",
"eslint": "^5.16.0",
"eslint-plugin-vue": "^5.2.3",
"node-sass": "^4.12.0",
"postcss-preset-env": "^5.3.0",
"sass-loader": "^7.3.1",
"stylelint": "^10.1.0",
"stylelint-config-recommended": "^2.2.0",
"stylelint-config-recommended-scss": "^3.3.0",
"stylelint-config-standard": "^18.3.0",
"stylelint-scss": "^3.10.1",
"vue": "^2.6.10",
"vue-template-compiler": "^2.6.10",
"webpack-bundle-analyzer": "^3.4.1"
},
"peerDependencies": {
"vue": ">=2.0"
},
"browserslist": [
"> 1%",
"last 2 versions",
"not ie <= 8"
],
"bugs": {
"url": "https://github.com/inkline/inkline/issues"
},
"homepage": "http://inkline.io",
"jsdelivr": "dist/inkline.js",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/inkline/inkline.git"
},
"types": "types/index.d.ts",
"keywords": [
"inkline",
"vue",
"stylus",
"responsive",
"front-end",
"components",
"framework",
"ui",
"ux"
]
}