This repository has been archived by the owner on Jul 23, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
45 lines (45 loc) · 1.54 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
{
"name": "vue-feature-flipping",
"description": "\"Feature flipping\" plugin for Vue.js",
"keywords": [
"vue",
"feature flipping"
],
"author": "Pinguet62 <pinguet62@gmail.com>",
"version": "4.1.0",
"main": "dist/vue-feature-flipping.umd.js",
"module": "dist/vue-feature-flipping.esm.js",
"unpkg": "dist/vue-feature-flipping.min.js",
"types": "dist/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/pinguet62/vue-feature-flipping.git"
},
"license": "Apache-2.0",
"scripts": {
"lint": "eslint . --ext .ts",
"test": "jest --coverage",
"build": "rimraf dist && tsc && npm run build:umd && npm run build:es && npm run build:unpkg",
"build:umd": "rollup --config rollup.config.js --format umd --file dist/vue-feature-flipping.umd.js",
"build:es": "rollup --config rollup.config.js --format es --file dist/vue-feature-flipping.esm.js",
"build:unpkg": "rollup --config rollup.config.js --format iife --file dist/vue-feature-flipping.min.js",
"prepublish": "npm run build"
},
"devDependencies": {
"@types/jest": "^27.0.3",
"@typescript-eslint/eslint-plugin": "^5.6.0",
"@typescript-eslint/parser": "^5.6.0",
"@vue/test-utils": "^2.0.0-rc.17",
"codacy-coverage": "^3.4.0",
"eslint": "^8.4.1",
"jest": "^27.4.4",
"rollup": "^2.61.0",
"rollup-plugin-buble": "^0.19.8",
"rollup-plugin-commonjs": "^10.1.0",
"ts-jest": "^27.1.1",
"typescript": "^4.5.3",
"vue": "^3.2.24",
"vue-router": "^4.0.12",
"vue-template-compiler": "^2.6.14"
}
}