-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 1.82 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": "@elbowspaceuk/laravel-settings-vue",
"version": "0.1.2",
"description": "A Vue integration for the Laravel Settings package",
"main": "dist/index.js",
"keywords": [
"config",
"open-source",
"php",
"settings",
"vuejs",
"laravel",
"database",
"vue",
"persistence",
"configuration",
"settings-storage",
"settings-repository"
],
"scripts": {
"test": "jest --config jestconfig.json",
"build": "tsc",
"format": "prettier --write \"src/**/*.ts\" \"src/**/*.js\"",
"lint": "tslint -p tsconfig.json",
"prepare": "npm run build"
},
"repository": {
"type": "git",
"url": "https://github.com/ElbowSpaceUK/laravel-settings-vue.git"
},
"author": "Toby Twigger <tobytwigger1@gmail.com>",
"license": "ISC",
"bugs": {
"url": "https://github.com/ElbowSpaceUK/laravel-settings-vue/issues"
},
"homepage": "https://github.com/ElbowSpaceUK/laravel-settings-vue#readme",
"files": [
"dist/**/*"
],
"devDependencies": {
"@babel/types": "^7.17.0",
"@jest/types": "^27.5.1",
"@types/jest": "^27.4.0",
"@vue/test-utils": "^1.3.0",
"axios": "^0.26",
"jest": "^27.5.1",
"jest-mock-axios": "^4.5.0",
"prettier": "^2.5.1",
"rollup": "^2.67.1",
"rollup-plugin-clear": "^2.0.7",
"rollup-plugin-typescript2": "^0.31.2",
"rollup-plugin-vue": "^6.0.0",
"ts-jest": "^27.1.3",
"ts-node": "^10.5.0",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.18.0",
"typescript": "^4.5.5"
},
"peerDependencies": {
"axios": "*",
"vue": "^2.7.0"
},
"dependencies": {
"vue": "^2.7.0"
}
}