-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.47 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
{
"name": "@marcelohmdias/vue-typed",
"description": "The easiest way to define types in Vue props",
"version": "0.2.0",
"author": {
"name": "Marcelo H M Dias",
"url": "https://github.com/marcelohmdias",
"email": "[email protected]"
},
"license": "MIT",
"keywords": [
"Props",
"Typescript",
"Vue"
],
"files": [
"dist",
"types/"
],
"cdn": "dist/Typed.umd.js",
"main": "dist/Typed.umd.js",
"module": "dist/Typed.esm.js",
"unpkg": "dist/Typed.min.js",
"types": "types/Typed.d.ts",
"jsdelivr": "dist/Typed.umd.js",
"scripts": {
"build": "bili",
"lint": "eslint --ext .ts src/",
"prepublish": "yarn build"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^2.12.0",
"@typescript-eslint/parser": "^2.12.0",
"bili": "^4.8.1",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.7.0",
"eslint-config-standard": "^14.1.0",
"eslint-plugin-import": "^2.19.1",
"eslint-plugin-node": "^11.0.0",
"eslint-plugin-prettier": "^3.1.2",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"prettier": "^1.19.1",
"rollup-plugin-typescript2": "^0.26.0",
"typescript": "^3.7.4",
"vue": "^2.6.11"
},
"repository": {
"type": "git",
"url": "git+https://github.com/marcelohmdias/vue-typed.git"
},
"bugs": {
"url": "https://github.com/marcelohmdias/vue-typed/issues"
},
"homepage": "https://github.com/marcelohmdias/vue-typed#readme"
}