-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
76 lines (76 loc) · 1.88 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
76
{
"name": "@eloqjs/vue-collection",
"version": "0.0.0-development",
"description": "The collection for your resources. Made specifically to work with arrays of objects from your API Responses.",
"homepage": "https://collection.eloqjs.com",
"repository": "github:eloqjs/vue-collection",
"keywords": [
"eloqjs",
"collection",
"collect",
"eloquent",
"resources",
"array",
"map",
"filter",
"laravel",
"vue",
"plugin"
],
"author": "João Pedro Antunes Silva",
"license": "MIT",
"publishConfig": {
"access": "public"
},
"main": "build/index.js",
"types": "types/index.d.ts",
"files": [
"build",
"types"
],
"scripts": {
"build": "rimraf ./build && tsc",
"lint": "eslint --ext .ts,.js,.json .",
"lint-fix": "yarn lint --fix",
"test": "jest"
},
"jest": {
"clearMocks": true,
"collectCoverage": true,
"collectCoverageFrom": [
"src/**/*.ts"
],
"coverageDirectory": "coverage",
"preset": "ts-jest",
"testEnvironment": "node",
"testPathIgnorePatterns": [
"/node_modules/",
"/build/"
]
},
"dependencies": {
"@eloqjs/collection": "^1.0.0-alpha.7"
},
"devDependencies": {
"@types/jest": "^26.0.15",
"@types/node": "^14.14.9",
"@typescript-eslint/eslint-plugin": "^4.8.1",
"@typescript-eslint/parser": "^4.8.1",
"@vue/test-utils": "^1.1.1",
"eslint": "^7.14.0",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jest": "^24.1.3",
"eslint-plugin-jest-formatting": "^2.0.0",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-simple-import-sort": "^6.0.1",
"jest": "^26.6.3",
"prettier": "^2.2.0",
"rimraf": "^3.0.2",
"semantic-release": "^17.2.4",
"ts-jest": "^26.4.4",
"typescript": "^4.1.2",
"vue": "^2.6.12",
"vue-template-compiler": "^2.6.12"
}
}