forked from posva/vue-promised
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.51 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
{
"name": "vue-promised",
"version": "1.2.0",
"description": "Promises as components",
"main": "dist/vue-promised.cjs.js",
"module": "dist/vue-promised.es.js",
"unpkg": "dist/vue-promised.js",
"browser": "dist/vue-promised.es.js",
"types": "types/index.d.ts",
"sideEffects": false,
"scripts": {
"lint": "eslint --color --ext=js,html src tests docs *.js",
"lint:fix": "yarn run lint -- --fix",
"unit": "jest",
"dev": "yarn run unit -- --watchAll",
"types": "tsc -p ./types/test/tsconfig.json",
"pretest": "yarn run lint",
"test": "yarn run types && yarn run unit",
"prepublishOnly": "rollit"
},
"files": [
"src",
"types/*.d.ts",
"dist/*.js",
"LICENSE",
"README.md"
],
"author": {
"name": "Eduardo San Martin Morote",
"email": "[email protected]"
},
"bugs": {
"url": "https://github.com/posva/vue-promised/issues"
},
"homepage": "https://github.com/posva/vue-promised#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/posva/vue-promised.git"
},
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.4.3",
"@babel/preset-env": "^7.4.3",
"@vue/test-utils": "^1.0.0-beta.29",
"babel-core": "7.0.0-bridge.0",
"babel-jest": "^24.7.1",
"codecov": "^3.3.0",
"eslint": "^5.16.0",
"eslint-config-posva": "^2.0.3",
"faked-promise": "^2.1.0",
"jest": "^24.7.1",
"typescript": "^3.4.3",
"vue": "^2.6.10",
"vue-jest": "^3.0.4",
"vue-template-compiler": "^2.6.10"
}
}