forked from jinfang134/vue-pipeline
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
63 lines (63 loc) · 1.56 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
{
"name": "vue-pipeline-scalable",
"version": "1.0.55",
"private": false,
"author": "",
"license": "MIT",
"description": "One easy-to-use component to show beautiful responsive timeline like jenkins blue ocean plugin. This is a scalable variant of vue-pipeline created by Zuo Jinfang",
"repository": {
"type": "git",
"url": "https://github.com/animesh-workplace/vue-pipeline"
},
"keywords": [
"vue",
"components",
"timeline"
],
"main": "index.js",
"scripts": {
"test": "ava test/*.test.js --verbose",
"lint": "eslint --quiet --cache --ext .vue,.js, src/** ./demo/src/**/*.{js,vue}",
"preversion": "npm test && npm run lint",
"version": "git add .",
"postversion": "git push origin master && git push --tags && npm publish --registry=https://registry.npmjs.org/",
"deploy:demo": "bash ./deploy-demo.sh"
},
"ava": {
"require": [
"@babel/register"
],
"babel": {
"testOptions": {
"babelrc": false,
"configFile": false
}
}
},
"dependencies": {
"string-width": "^4.2.0"
},
"devDependencies": {
"@babel/register": "^7.7.4",
"@vue/babel-preset-app": "^4.1.1",
"@vue/cli-plugin-eslint": "^3.0.1",
"ava": "^2.4.0",
"babel-eslint": "^10.0.1",
"core-js": "^3.4.5",
"eslint": "^5.16.0",
"eslint-plugin-vue": "^6.0.1",
"husky": "^3.1.0"
},
"postcss": {
"plugins": {
"autoprefixer": {}
}
},
"browserslist": [
"> 1%",
"last 2 versions"
],
"publishConfig": {
"registry": "https://registry.npmjs.org/"
}
}