-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 loc) · 2.12 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
{
"name": "vue-use-switch-map",
"version": "0.1.1",
"description": "A Vue composition that let you compose a ref with a function from values to refs. The logic is similar to the RxJS switchMap operator.",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"typings": "dist/esm/index.d.ts",
"scripts": {
"build": "npx rimraf dist && npm run build:esm && npm run build:cjs",
"build:esm": "tsc --module es2015 --outDir dist/esm -d",
"build:cjs": "tsc --module commonjs --outDir dist/cjs",
"watch": "tsc --watch",
"types:check": "tsc --noEmit",
"test": "jest",
"test:watch": "jest --watchAll --verbose false",
"format": "prettier --write \"{src,test,examples}/**/*.ts\"",
"lint": "eslint \"{src,test,examples}/**/*.ts\"",
"lint:fix": "eslint \"{src,test,examples}/**/*.ts\" --fix"
},
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/jfet97/useSwitchMap.git"
},
"keywords": [
"vue",
"vue3",
"composition",
"api",
"switchmap",
"hook",
"vue-hooks",
"composition-api",
"vue-composable",
"composable"
],
"author": "Andrea Simone Costa andrysimo1997@gmail.com",
"license": "MIT",
"bugs": {
"url": "/~https://github.com/jfet97/useSwitchMap/issues"
},
"homepage": "/~https://github.com/jfet97/useSwitchMap#readme",
"devDependencies": {
"@types/jest": "^26.0.7",
"@typescript-eslint/eslint-plugin": "^3.7.1",
"@typescript-eslint/parser": "^3.7.1",
"@vue/composition-api": "^1.0.0-beta.6",
"eslint": "^7.5.0",
"eslint-config-prettier": "^6.11.0",
"husky": "^4.2.5",
"jest": "^26.1.0",
"prettier": "^2.0.5",
"ts-jest": "^26.1.3",
"typescript": "^3.9.7",
"vue": "^2.6.11"
},
"dependencies": {
"vue-demi": "^0.1.4"
},
"husky": {
"hooks": {
"pre-commit": "npm run types:check && npm run lint:fix && npm run format"
}
}
}