-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
56 lines (56 loc) · 1.55 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
{
"name": "@dansmaculotte/vue-segment",
"version": "0.2.9",
"description": "Vue.js plugin for Segment Analytics.js",
"license": "MIT",
"main": "src/index.js",
"repository": "https://github.com/dansmaculotte/vue-segment",
"contributors": [
{
"name": "Ryan Stuart",
"email": "[email protected]"
},
{
"name": "Gaël Reyrol",
"email": "[email protected]"
}
],
"scripts": {
"dev": "cd test && NODE_ENV=development webpack-dev-server --open --hot",
"lint": "eslint src test",
"test": "yarn lint && echo ToDo",
"release": "yarn test && standard-version && git push --follow-tags && npm publish"
},
"files": [
"src"
],
"devDependencies": {
"@babel/core": "7.12.10",
"@babel/preset-env": "7.12.11",
"@commitlint/cli": "11.0.0",
"@commitlint/config-conventional": "11.0.0",
"babel-eslint": "10.1.0",
"babel-jest": "26.6.3",
"babel-loader": "8.2.2",
"codecov": "3.8.1",
"dotenv": "latest",
"eslint": "7.17.0",
"eslint-config-standard": "16.0.2",
"eslint-plugin-import": "2.22.1",
"eslint-plugin-jest": "24.1.3",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-promise": "latest",
"eslint-plugin-standard": "5.0.0",
"eslint-plugin-vue": "7.4.1",
"husky": "4.3.7",
"jest": "26.6.3",
"standard-version": "9.1.0",
"vue": "3.0.0",
"vue-loader": "15.9.6",
"vue-router": "3.4.9",
"vue-template-compiler": "2.6.12",
"webpack": "5.94.0",
"webpack-cli": "4.3.1",
"webpack-dev-server": "3.11.1"
}
}