-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
75 lines (75 loc) · 2.18 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
{
"name": "vue-compose-promise",
"version": "0.0.5",
"description": "Easily manipulate Promises and their state in Vue",
"main": "dist/vue-compose-promise.esm.js",
"module": "dist/vue-compose-promise.esm.js",
"unpkg": "dist/vue-compose-promise.js",
"browser": "dist/vue-compose-promise.esm.js",
"types": "dist/src",
"sideEffects": false,
"author": {
"name": "Eduardo San Martin Morote",
"email": "[email protected]"
},
"scripts": {
"lint": "eslint --color --ext=js,html,ts src __tests__ *.js",
"lint:fix": "yarn run lint --fix",
"unit": "jest",
"dev": "yarn run unit --watchAll",
"pretest": "yarn run lint",
"test": "yarn run unit",
"build": "rollup -c rollup.config.js",
"prepublishOnly": "yarn run build"
},
"files": [
"dist",
"LICENSE",
"README.md"
],
"keywords": [],
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.6.2",
"@babel/preset-env": "^7.6.2",
"@types/jest": "^24.0.18",
"@typescript-eslint/eslint-plugin": "^2.3.1",
"@typescript-eslint/parser": "^2.3.1",
"@vue/composition-api": "^0.3.2",
"@vue/test-utils": "^1.0.0-beta.29",
"babel-core": "^7.0.0-bridge.0",
"babel-jest": "^24.9.0",
"codecov": "^3.6.1",
"eslint": "^6.4.0",
"eslint-config-prettier": "^6.3.0",
"eslint-plugin-prettier": "^3.1.1",
"faked-promise": "^2.2.1",
"jest": "^24.9.0",
"pascalcase": "^1.0.0",
"prettier": "^1.18.2",
"rimraf": "^3.0.0",
"rollup": "^1.21.4",
"rollup-plugin-alias": "^2.0.0",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-replace": "^2.2.0",
"rollup-plugin-terser": "^5.1.2",
"rollup-plugin-typescript2": "^0.24.2",
"ts-jest": "^24.1.0",
"typescript": "^3.6.3",
"vue": "^2.6.10",
"vue-jest": "^3.0.5",
"vue-template-compiler": "^2.6.10"
},
"peerDependencies": {
"@vue/composition-api": "~0.3.2"
},
"repository": {
"type": "git",
"url": "git+https://github.com/posva/vue-compose-promise.git"
},
"bugs": {
"url": "https://github.com/posva/vue-compose-promise/issues"
},
"homepage": "https://github.com/posva/vue-compose-promise#readme"
}