This repository has been archived by the owner on May 8, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
74 lines (74 loc) · 1.98 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
{
"name": "@variate/vue",
"version": "2.0.8",
"description": "Variate Vue plugin",
"author": "Valentin Prugnaud <[email protected]>",
"license": "BSL 1.1",
"main": "dist/variate-vue.common.js",
"module": "dist/variate-vue.esm.js",
"unpkg": "dist/variate-vue.js",
"jsdelivr": "dist/variate-vue.js",
"scripts": {
"lint": "eslint --ext .js src",
"dev": "npm run clean && rollup -wm -c rollup.config.js",
"clean": "rimraf dist/",
"build": "rollup -c rollup.config.js --exports=named",
"release": "standard-version",
"test": "jest"
},
"dependencies": {
"@variate/engine": "^3.3.0",
"vue": "^2.6.11"
},
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.9.6",
"@babel/preset-env": "^7.9.6",
"@commitlint/cli": "^8.3.5",
"@commitlint/config-conventional": "^8.3.4",
"@vue/test-utils": "^1.0.2",
"babel-jest": "^26.0.1",
"cz-conventional-changelog": "^3.2.0",
"eslint": "^7.0.0",
"eslint-plugin-vue": "^6.2.2",
"husky": "^4.2.5",
"jest": "^26.0.1",
"lint-staged": "^10.2.2",
"rimraf": "^3.0.2",
"rollup": "^2.10.2",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-buble": "^0.19.8",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-json": "^4.0.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-replace": "^2.2.0",
"rollup-plugin-uglify": "^6.0.4",
"standard-version": "^8.0.0",
"vue-jest": "^3.0.5"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/variateapp/variate-vue.git"
},
"keywords": [
"ab-testing",
"variate"
],
"bugs": {
"url": "https://github.com/variateapp/variate-vue/issues"
},
"homepage": "https://github.com/variateapp/variate-vue#README.md",
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": "eslint --cache --fix"
}
}