-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
87 lines (87 loc) · 2.6 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
{
"name": "vue-ld",
"version": "0.4.0",
"description": "A Vue.js wrapper for the LaunchDarkly SDK for Browser JavaScript",
"main": "dist/index.cjs.js",
"module": "dist/index.es.js",
"scripts": {
"build": "npm run use-vue:2 && rollup -c rollup.config.js",
"watch": "npm run use-vue:2 && rollup -c -w rollup.config.js",
"build:prod": "npm run use-vue:2 && cross-env NODE_ENV=production npm run build",
"lint": "vue-cli-service lint --max-warnings 0",
"lint:ci": "npm run lint -- --no-fix",
"test:unit": "npm run test:unit:2",
"test:unit:2": "npm run use-vue:2 && jest",
"test:unit:3": "npm run use-vue:3 && jest",
"use-vue:2": "node scripts/swap-vue.js 2 && vue-demi-switch 2",
"use-vue:3": "node scripts/swap-vue.js 3 && vue-demi-switch 3"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dashhudson/vue-ld.git"
},
"keywords": [
"vue",
"vuejs",
"launchdarkly"
],
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/dashhudson/vue-ld/issues"
},
"homepage": "https://github.com/dashhudson/vue-ld#readme",
"devDependencies": {
"@rollup/plugin-babel": "^5.1.0",
"@rollup/plugin-commonjs": "^14.0.0",
"@rollup/plugin-node-resolve": "^9.0.0",
"@vue/cli-plugin-babel": "~5.0.8",
"@vue/cli-plugin-eslint": "~5.0.8",
"@vue/cli-service": "~5.0.8",
"@vue/composition-api": "^1.7.1",
"@vue/eslint-config-airbnb": "^6.0.0",
"@vue/test-utils": "^1.3.0",
"@vue/test-utils3": "npm:@vue/test-utils@^2.0.0-0",
"@vue/vue2-jest": "^29.1.1",
"@vue/vue3-jest": "^29.1.1",
"babel-eslint": "^10.1.0",
"babel-jest": "^29.1.1",
"core-js": "^3.25.5",
"cross-env": "^7.0.3",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-vue": "^6.2.2",
"jest": "^29.1.1",
"jest-environment-jsdom": "^29.1.1",
"jest-transform-stub": "^2.0.0",
"jsdom": "^20.0.1",
"launchdarkly-js-client-sdk": "^2.23.0",
"prettier": "^2.7.1",
"rollup": "^2.23.0",
"rollup-plugin-vue": "^5.1.9",
"sinon": "^9.0.3",
"vue": "^2.6.11",
"vue-router": "^3.6.5",
"vue-template-compiler": "^2.6.11",
"vue3": "npm:vue@^3.0.1"
},
"dependencies": {
"lodash": "^4.17.19",
"vue-demi": "^0.13.11"
},
"peerDependencies": {
"@vue/composition-api": "^1.0.0-rc.1",
"launchdarkly-js-client-sdk": "^2.23.0",
"vue": "^2.0.0 || >=3.0.0"
},
"peerDependenciesMeta": {
"@vue/composition-api": {
"optional": true
}
},
"engines": {
"node": "16.10",
"npm": "8.3.1"
},
"sideEffects": false
}