-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 1.71 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
{
"name": "vue-composable-helpers",
"version": "0.1.0",
"description": "Vue 3 composable api helpers",
"license": "MIT",
"module": "dist/vue-composable.esm.js",
"types": "dist/vue-composable.d.ts",
"author": {
"name": "Marcelo H M Dias",
"url": "https://github.com/marcelohmdias",
"email": "[email protected]"
},
"keywords": [
"Vue 3",
"Composition API",
"Composable",
"Helpers"
],
"files": [
"dist"
],
"scripts": {
"build": "bili",
"clean": "rimraf dist",
"lint": "eslint --ext .ts .",
"prepublishOnly": "yarn clean && yarn build",
"test": "yarn jest"
},
"dependencies": {
"json2mq": "^0.2.0",
"vue": "^3.0.0-rc.10"
},
"devDependencies": {
"@commitlint/cli": "^9.1.2",
"@commitlint/config-conventional": "^9.1.2",
"@types/json2mq": "^0.2.0",
"@typescript-eslint/eslint-plugin": "^4.1.0",
"@typescript-eslint/parser": "^4.1.0",
"bili": "^5.0.5",
"builtin-modules": "^3.1.0",
"commitizen": "^4.2.1",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^7.8.1",
"eslint-config-prettier": "^6.11.0",
"eslint-config-standard": "^14.1.1",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-import-helpers": "^1.1.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"husky": "^4.3.0",
"jest": "^26.4.2",
"lint-staged": "^10.3.0",
"prettier": "^2.1.1",
"rimraf": "^3.0.2",
"rollup-plugin-typescript2": "^0.27.2",
"ts-jest": "^26.3.0",
"typescript": "^4.0.2"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}