-
Notifications
You must be signed in to change notification settings - Fork 71
/
package.json
72 lines (72 loc) · 1.74 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
{
"name": "vue-pipeline",
"version": "1.0.12",
"private": false,
"author": "Zuo Jinfang <[email protected]>",
"license": "MIT",
"description": "One easy-to-use component to show beautiful responsive timeline like jenkins blue ocean plugin.",
"repository": {
"type": "git",
"url": "https://github.com/jinfang134/vue-pipeline"
},
"keywords": [
"vue",
"components",
"timeline"
],
"main": "index.js",
"scripts": {
"serve": "vue-cli-service serve",
"build": "vue-cli-service build",
"test": "ava test/*.test.js --verbose",
"lint": "eslint --quiet --cache --ext .vue,.js, src/** ./demo/*.{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/"
},
"husky": {
"hooks": {
"pre-commit": "yarn lint && yarn test",
"pre-push": "yarn lint"
}
},
"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-babel": "^3.0.1",
"@vue/cli-plugin-eslint": "^3.0.1",
"@vue/cli-service": "^3.0.1",
"ava": "^2.4.0",
"element-ui": "^2.13.0",
"vue": "^2.6.10",
"babel-eslint": "^10.0.1",
"core-js": "^3.4.5",
"eslint": "^5.16.0",
"eslint-plugin-vue": "^6.0.1",
"vue-template-compiler": "^2.6.10",
"husky": "^3.1.0"
},
"postcss": {
"plugins": {
"autoprefixer": {}
}
},
"browserslist": [
"> 1%",
"last 2 versions"
]
}