-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.76 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
{
"name": "flagsmith-vue",
"version": "2.2.0",
"description": "Flagsmith Vue.js integration",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"watch": "tsc --watch",
"build": "tsc --project tsconfig.build.json && npm run minify",
"minify": "terser dist/index.js -o dist/index.js --ecma 2016",
"lint": "eslint .",
"format": "prettier . --write",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage"
},
"lint-staged": {
"*.{js,json,ts}": "prettier --write",
"*.{js,ts}": "eslint"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jhoermann/flagsmith-vue.git"
},
"files": [
"dist"
],
"keywords": [
"flagsmith",
"feature flags",
"vue"
],
"author": "Jochen Hörmann",
"license": "MIT",
"bugs": {
"url": "https://github.com/jhoermann/flagsmith-vue/issues"
},
"homepage": "https://github.com/jhoermann/flagsmith-vue#readme",
"devDependencies": {
"@commitlint/config-conventional": "^19.6.0",
"@tsconfig/strictest": "^2.0.5",
"@types/jest": "^29.5.14",
"@vue/test-utils": "^2.4.6",
"eslint": "^9.19.0",
"flagsmith": "^8.0.2",
"husky": "^9.1.7",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"lint-staged": "^15.4.3",
"prettier": "3.4.2",
"terser": "^5.37.0",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"typescript": "^5.7.3",
"typescript-eslint": "^8.22.0",
"vue": "^3.5.13"
},
"peerDependencies": {
"flagsmith": "^5 || >=7 <9",
"vue": "^2.7 || ^3"
}
}